viewof map = {
let container = html`<div style='height:700px;' />`;
yield container;
const mapRef = (container.value = new maplibre.Map({
container,
center: [-71.8, 42.2],
zoom: 7,
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("cakes", {
type: "geojson",
data: {
type: "FeatureCollection",
features: []
}
});
mapRef.addLayer({
id: "cakes",
type: "circle",
source: "cakes",
layout: {
visibility: "visible"
},
paint: {
"circle-color": "pink",
"circle-opacity": 0.3,
"circle-stroke-color": "blue",
"circle-stroke-width": 0.6
}
});
mapRef.addSource("tacos", {
type: "geojson",
data: {
type: "FeatureCollection",
features: []
}
});
mapRef.addLayer({
id: "tacos",
type: "circle",
source: "tacos",
layout: {
visibility: "visible"
},
paint: {
"circle-color": "yellow",
"circle-opacity": 0.3,
"circle-stroke-color": "orange",
"circle-stroke-width": 0.6
}
});
resolve();
});
});
invalidation.then(() => mapRef.remove());
yield container;
}