{
let container = html`<div style='height:600px;' />`;
yield container;
const client = tgmCoreClient("westcentraleurope");
let map = new mapboxgl.Map({
container,
center: [13.446677, 52.503556],
zoom: 10,
style: client.basemaps.getGLStyleURL("Basic"),
attributionControl: false
})
.addControl(new mapboxgl.NavigationControl())
.addControl(
new mapboxgl.AttributionControl({
compact: true,
customAttribution: attribution
})
);
const POI_URL =
`https://api.targomo.com/pointofinterest/{z}/{x}/{y}.mvt` +
`?apiKey=${targomoKey()}${publicTransportStationQueryString}&match=all&loadAllTags=true&layerType=node`;
map.on("load", async () => {
map.addLayer({
id: "poi",
type: "circle",
source: {
type: "vector",
tiles: [POI_URL],
minzoom: 9
},
"source-layer": "poi",
paint: {
"circle-radius": {
property: "numOfPois",
stops: [
[1, 2],
[10, 8]
]
},
"circle-color": "#f0f"
}
});
const popup = new mapboxgl.Popup({
closeButton: false,
closeOnClick: false
});
map.on("mouseenter", "poi", (e) => {
map.getCanvas().style.cursor = "pointer";
let description = "";
if (e.features[0].properties.numOfPois > 1) {
description += `<strong>Multiple POIs</strong><br><em>${e.features[0].properties.numOfPois}
POIs here,<br>zoom in to see details</em>`;
} else {
description += `<strong>POI: Public Transit</strong><br>`;
const tags = JSON.parse(e.features[0].properties.tags);
const rows = Object.keys(tags).map((k) => {
return `<tr><td>${k}</td><td>${tags[k]}</td></tr>`;
});
const addOn = `<table><thead><tr><th>tag</th><th>value</th></tr></thead><tbody>${rows.join(
""
)}</tbody></table>`;
description += addOn;
}
popup.setLngLat(e.lngLat).setHTML(description).addTo(map);
});
map.on("mouseleave", "poi", () => {
map.getCanvas().style.cursor = "";
popup.remove();
});
});
}