map = {
const container = html`<div style="height:600px;">`;
yield container;
const map = L.map(container).setView([35.0844, -106.6504], 12);
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
attribution: "© <a href=https://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"
}).addTo(map);
L.geoJSON(artgeo, {
onEachFeature: function(feature, layer) {
layer.bindTooltip(feature.properties.Name);
}
}).addTo(map);
}