in website/src/components/BaseMap.js [29:47]
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%'
}
};
}