viewof map = {
const container = html`<div style="height:800px;">`;
yield container;
const map = (container.value = new mapboxgl.Map({
container,
center: [103.61, 36.8],
zoom: 3.5,
style: "mapbox://styles/mapbox/streets-v11",
scrollZoom: false
}));
invalidation.then(() => map.remove());
}