map = {
const container = yield htl.html`<div style="height: 500px;">`;
const map = L.map(container).setView(cityCoord.coord,4);
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
attribution: "© <a href=https://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"
}).addTo(map);
filterByCoord.forEach(e => {
L.marker(e.coord, {riseOnHover: true}).addTo(map);
})
}