{
let container = html`<div style='height:400px;' />`;
yield container;
let view = new MapView({
map: new WebMap({
basemap: "satellite"
}),
container,
center: [-100, 40],
zoom: 4,
navigation: {
mouseWheelZoomEnabled: false
}
});
invalidation.then(() => view.destroy());
}