viewof map = {
const container = html`<div style="height:400px;">`;
yield container;
const mapRef = container.value = new mapboxgl.Map({
container,
center: [0,0],
zoom: 1,
style: "mapbox://styles/mapbox/light-v10",
scrollZoom: false
});
invalidation.then(() => mapRef.remove());
yield container;
}