map.on("load", async () => {
map.addSource("lights", {
type: "geojson",
data: { type: "FeatureCollection", features: [] }
});
map.addSource("lights-halos", {
type: "geojson",
data: { type: "FeatureCollection", features: [] }
});
map.addLayer({
id: "lights-blur",
type: "circle",
source: "lights-halos",
paint: {
"circle-radius": [
"interpolate",
["cubic-bezier", 1, 1, 1, 1],
["zoom"],
8,
4,
22,
30
],
"circle-color": "#fef08a",
"circle-blur": ["interpolate", ["linear"], ["zoom"], 8, 6, 22, 1]
}
});
map.addLayer({
id: "lights",
type: "circle",
source: "lights",
paint: {
"circle-radius": ["interpolate", ["linear"], ["zoom"], 8, 0.25, 22, 3],
"circle-color": "#fef08a",
"circle-opacity": 0.25
}
});
map.addLayer({
id: "lights-on",
type: "circle",
source: "lights-halos",
paint: {
"circle-radius": ["interpolate", ["linear"], ["zoom"], 8, 0.25, 22, 3],
"circle-color": "#fef08a"
}
});
mutable mapReady = true;
})