aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/main/MapGeofence.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/map/main/MapGeofence.js')
-rw-r--r--modern/src/map/main/MapGeofence.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/modern/src/map/main/MapGeofence.js b/modern/src/map/main/MapGeofence.js
index b62cd378..12eedf7d 100644
--- a/modern/src/map/main/MapGeofence.js
+++ b/modern/src/map/main/MapGeofence.js
@@ -29,8 +29,8 @@ const MapGeofence = () => {
['==', '$type', 'Polygon'],
],
paint: {
- 'fill-color': theme.palette.colors.geometry,
- 'fill-outline-color': theme.palette.colors.geometry,
+ 'fill-color': ['get', 'color'],
+ 'fill-outline-color': ['get', 'color'],
'fill-opacity': 0.1,
},
});
@@ -39,7 +39,7 @@ const MapGeofence = () => {
id: 'geofences-line',
type: 'line',
paint: {
- 'line-color': theme.palette.colors.geometry,
+ 'line-color': ['get', 'color'],
'line-width': 2,
},
});
@@ -77,7 +77,7 @@ const MapGeofence = () => {
useEffect(() => {
map.getSource(id).setData({
type: 'FeatureCollection',
- features: Object.values(geofences).map(geofenceToFeature),
+ features: Object.values(geofences).map((geofence) => geofenceToFeature(theme, geofence)),
});
}, [geofences]);