map = {
const container = html`<div style="height: 600px;"></div`;
yield container;
const map = L.map(container).setView([43.677271, -84.380461], 13);
esriLeaflet
.tiledMapLayer({
url:
'https://tiles.arcgis.com/tiles/QcN4ko50whTktDF1/arcgis/rest/services/Ortho_Midland2020_0520and0521/MapServer',
maxZoom: 18
})
.addTo(map);
}