{
const container = html`<div style="height:600px;">`;
yield container;
var map = new maplibregl.Map({
container: container,
style: {
version: 8,
sources: {
sample: {
type:"vector",
url:"pmtiles://https://s3.us-west-2.amazonaws.com/us-west-2.opendata.source.coop/google-research-open-buildings/google-open-buildings.pmtiles"
}
},
layers: [
{
id:"fill",
type:"fill",
source:"sample",
"source-layer":"buildings",
paint:{
"fill-color":"#aaa"
}
},
{
id:"stroke",
type:"line",
source:"sample",
"source-layer":"buildings",
paint:{
"line-color":"#333",
"line-width": [
"interpolate",
["exponential", 2],
["zoom"],
0, 2,
15, 0.5
]
}
}
]
},
center: [0, 0],
zoom: 1
});
}