{
const container = html`<div style="height:400px;">`;
yield container;
let map = new L.map(container,{maxZoom:4}).setView([38,-100],3)
const p = new pmtiles.PMTiles("https://protomaps-static.sfo3.digitaloceanspaces.com/osm_carto.pmtiles")
p.leafletLayer({attribution:'© <a href="https://openstreetmap.org">OpenStreetMap</a> contributors'}).addTo(map)
}