map = {
const container = html`<div style="height:600px;">`;
yield container;
const map = L.map(container).setView([0, 0], 2);
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 layer = L.geoJSON(
[
{
type: "FeatureCollection",
features: coded.map(({ lon, lat, Place, issue }) => ({
type: "Feature",
properties: { location: Place, issue },
geometry: { type: "Point", coordinates: [lon, lat] }
}))
}
],
{
pointToLayer: (feature, latlng) =>
L.circleMarker(latlng, {
radius: 5,
color: "black",
weight: 1,
opacity: 1,
fillOpacity: 0.6
}),
style: ({ properties: { issue } }) => ({ fillColor: color(issue) }),
onEachFeature: function (feature, layer) {
const { location, issue } = feature.properties;
const d = issues.get(issue);
layer.bindPopup(md`### <a href="https://github.com/nvkelso/natural-earth-vector/issues/${issue}" target:"_blank">#${issue}: ${d.title}</a>\n\n**${location}:**
<div style="max-height: 200px; overflow: scroll">${d.body}</div>`);
}
}
).addTo(map);
}