From e86cdc676432b51a1af976b1b66b070c936550a5 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 20 Mar 2026 20:25:58 +0000 Subject: [PATCH] Fix status display for RMO --- html/template/rmo/status.html | 2 +- html/template/sync/planning-root.html | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/html/template/rmo/status.html b/html/template/rmo/status.html index 71f6f791..89ca1c29 100644 --- a/html/template/rmo/status.html +++ b/html/template/rmo/status.html @@ -93,7 +93,7 @@ function onLoad() { 'circle-radius': 7, 'circle-stroke-width': 2, 'circle-stroke-color': "#024AB6", - } + }, 'source': 'tegola', 'source-layer': 'water_location', 'type': 'circle', diff --git a/html/template/sync/planning-root.html b/html/template/sync/planning-root.html index d0050bd6..98d09a44 100644 --- a/html/template/sync/planning-root.html +++ b/html/template/sync/planning-root.html @@ -99,6 +99,19 @@ "source-layer": "parcel", type: "line", }); + map.addLayer({ + id: "signal-point", + paint: { + "circle-color": "#0D6EfD", + "circle-radius": 7, + "circle-stroke-width": 2, + "circle-stroke-color": "#024AB6", + }, + source: "tegola", + "source-layer": "signal-point", + type: "circle", + }); + console.log("Added parcel and signal layers"); }); }); },