{
let map = new mapboxgl.Map({
container,
center: [
130.7088734, 32.8032791
],
zoom: 19.29,
localIdeographFontFamily: "'MS Gothic', 'Hiragino Kaku Gothic Pro', sans-serif",
style: 'https://hfu.github.io/prototype5/style.json'
})
if (showNavigationControl) {
map.addControl(new mapboxgl.NavigationControl(), 'top-right')
}
try {
yield map
yield invalidation
} finally {
map.remove()
}
}