viewof map = {
let container = html`<div style='height:800px;' />`;
yield container;
const mapRef = (container.value = new maplibre.Map({
container,
zoom: 1,
maplibreLogo: true,
style: "https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json",
attributionControl: true
}));
await new Promise((resolve, reject) => {
mapRef.on("load", async () => {
mapRef.addSource("points", {
type: "geojson",
data: turf.featureCollection(
airport_volume_airport_locations.map((d) =>
turf.point([d.Airport1Longitude, d.Airport1Latitude], d)
)
)
});
mapRef.addLayer({
id: "points",
type: "circle",
source: "points",
layout: {},
paint: {
"circle-radius": {
stops: [
[10, 2],
[16, 4]
]
},
"circle-color": "black"
}
});
resolve();
});
});
const popup = new maplibre.Popup({
closeButton: false,
closeOnClick: false
});
mapRef.on("mouseenter", "points", (e) => {
mapRef.getCanvas().style.cursor = "pointer";
const p = e.features[0].properties;
const description = `<strong>Orig: </strong>${p.Orig}
<br><strong>Name: </strong>${p.Name}
<br><strong>TotalSeats: </strong>${p.TotalSeats}
<br><strong>Country: </strong>${p["Country Name"]}`;
popup.setLngLat(e.lngLat).setHTML(description).addTo(mapRef);
});
mapRef.on("mouseleave", "points", () => {
mapRef.getCanvas().style.cursor = "";
popup.remove();
});
invalidation.then(() => mapRef.remove());
yield container;
}