{
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
attribution: "© <a href=https://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"
}).addTo(map);
const georasterLayer = new GeoRasterLayer({
georaster
}).addTo(map);
const aoiLayer = L.geoJson(aoi).addTo(map);
map.fitBounds(aoiLayer.getBounds());
map.setZoom(10);
yield map;
}