viewof centerpoint = {
let container = html`<div style='height:400px;' />`;
yield container;
let map = new mapboxgl.Map({
container,
center: [-122.65, 45.52],
zoom: 12,
style: "mapbox://styles/rjsheperd/ck94un7j80ldk1io5wskcgbum/draft"
});
map.on("mousemove", e => {
container.value = e.lngLat;
container.dispatchEvent(new CustomEvent("input"));
});
}