{
const container = DOM.element('div', { style: `width:${width}px; height:350px` })
const map = L.map(container, { scrollWheelZoom: false });
const aoiLayer = L.geoJson(aoi).addTo(map);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', { attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors' }).addTo(map);
const lyr = new GeoRasterLayer({ georaster: hurricane_harvey_cog, resolution: 256 }).addTo(map);
yield container;
map.fitBounds(aoiLayer.getBounds());
map.setZoom(map.getZoom() - 1)
}