Fix status display for RMO

This commit is contained in:
Eli Ribble 2026-03-20 20:25:58 +00:00
parent b034fa5cf5
commit e86cdc6764
No known key found for this signature in database
2 changed files with 14 additions and 1 deletions

View file

@ -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',

View file

@ -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");
});
});
},