diff options
author | Anton Tananaev <anton@traccar.org> | 2022-06-03 08:25:48 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-06-03 08:25:48 -0700 |
commit | 7d521e8411dbeb9ca6bbeb98453145b44c7e5913 (patch) | |
tree | 369bb41e7a03d1f4c7a43ab6dafa69526af9101c /modern/src/map/main/MapGeofence.js | |
parent | c3b728b2a29d014ec1a4de454f33b47d0e88fa47 (diff) | |
download | trackermap-web-7d521e8411dbeb9ca6bbeb98453145b44c7e5913.tar.gz trackermap-web-7d521e8411dbeb9ca6bbeb98453145b44c7e5913.tar.bz2 trackermap-web-7d521e8411dbeb9ca6bbeb98453145b44c7e5913.zip |
Add geometry color to theme
Diffstat (limited to 'modern/src/map/main/MapGeofence.js')
-rw-r--r-- | modern/src/map/main/MapGeofence.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/modern/src/map/main/MapGeofence.js b/modern/src/map/main/MapGeofence.js index 71d5cb6e..b62cd378 100644 --- a/modern/src/map/main/MapGeofence.js +++ b/modern/src/map/main/MapGeofence.js @@ -1,12 +1,15 @@ import { useEffect } from 'react'; import { useSelector } from 'react-redux'; +import { useTheme } from '@mui/styles'; import { map } from '../core/MapView'; import { geofenceToFeature } from '../core/mapUtil'; const MapGeofence = () => { const id = 'geofences'; + const theme = useTheme(); + const geofences = useSelector((state) => state.geofences.items); useEffect(() => { @@ -26,8 +29,8 @@ const MapGeofence = () => { ['==', '$type', 'Polygon'], ], paint: { - 'fill-color': '#3bb2d0', - 'fill-outline-color': '#3bb2d0', + 'fill-color': theme.palette.colors.geometry, + 'fill-outline-color': theme.palette.colors.geometry, 'fill-opacity': 0.1, }, }); @@ -36,7 +39,7 @@ const MapGeofence = () => { id: 'geofences-line', type: 'line', paint: { - 'line-color': '#3bb2d0', + 'line-color': theme.palette.colors.geometry, 'line-width': 2, }, }); |