From 25cd89b8a7994c7553e1525220b966cb4830bf2a Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 5 Mar 2026 23:41:12 +0000 Subject: [PATCH] Only show parcels at a high level zoom so we don't flood things --- html/template/sync/planning-root.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/html/template/sync/planning-root.html b/html/template/sync/planning-root.html index 44216fa6..2540e5bf 100644 --- a/html/template/sync/planning-root.html +++ b/html/template/sync/planning-root.html @@ -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", }); }); });