Only show parcels at a high level zoom so we don't flood things

This commit is contained in:
Eli Ribble 2026-03-05 23:41:12 +00:00
parent 0e4ce01776
commit 25cd89b8a7
No known key found for this signature in database

View file

@ -83,12 +83,13 @@
map.on("load", () => {
map.addLayer({
id: "parcel",
source: "tegola",
"source-layer": "parcel",
type: "line",
minzoom: 14,
paint: {
"line-color": "#0f0",
},
source: "tegola",
"source-layer": "parcel",
type: "line",
});
});
});