constructor()

in resources/code/website/src/components/ESRIMap.js [25:43]


    constructor(props) {
      super(props);
      this.state = { status: 'loading' };
      this.esriOptions = {
        url: 'https://js.arcgis.com/4.6/'
      };
      this.style = {
        container: {
          height: '100vh',
          width: '100vw'
        },
        map: {
          padding: 0,
          margin: 0,
          height: '100%',
          width: '100%'
        }
      };
    }