viewof map = {
const container = yield html`<div style="height:600px">`;
const map = (container.value = new maplibregl.Map({
container,
zoom: 15.4,
center: [129.8817229270935, 32.74249903108975],
pitch: 51.467078189300416,
bearing: 132.77893004115117,
localIdeographFontFamily: '"Hiragino Maru Gothic ProN W4", "Meiryo", serif',
style: STYLE
}))
invalidation.then(() => map.remove());
}