diff --git a/server/src/js/components/map/live.js b/server/src/js/components/map/live.js index 3ce194eb5..c64ea6aea 100644 --- a/server/src/js/components/map/live.js +++ b/server/src/js/components/map/live.js @@ -72,6 +72,10 @@ function LiveMap (mapId, options) { ] const layers = defaultLayers.concat(dataLayers) + // Assign z-index to ensure visibility + stations.setZIndex(2) // Higher priority + rainfall.setZIndex(1) // Lower priority + // Configure default interactions const interactions = defaultInteractions({ pinchRotate: false