aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/GeofenceMap.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-10-25 15:59:38 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-10-25 15:59:38 -0700
commit5df4c5743d7b501529d4e3823fe02184ef0259fe (patch)
tree646bb68e91595035aa589c120f81880f2f18987b /modern/src/map/GeofenceMap.js
parent2184bb6a9e98327f7d756b5977ae5315268f37b3 (diff)
downloadetbsa-traccar-web-5df4c5743d7b501529d4e3823fe02184ef0259fe.tar.gz
etbsa-traccar-web-5df4c5743d7b501529d4e3823fe02184ef0259fe.tar.bz2
etbsa-traccar-web-5df4c5743d7b501529d4e3823fe02184ef0259fe.zip
Initial geofence implementation
Diffstat (limited to 'modern/src/map/GeofenceMap.js')
-rw-r--r--modern/src/map/GeofenceMap.js59
1 files changed, 59 insertions, 0 deletions
diff --git a/modern/src/map/GeofenceMap.js b/modern/src/map/GeofenceMap.js
new file mode 100644
index 0000000..965efaa
--- /dev/null
+++ b/modern/src/map/GeofenceMap.js
@@ -0,0 +1,59 @@
+import wellknown from 'wellknown';
+import { useEffect, useState } from 'react';
+
+import { map } from './Map';
+import { useEffectAsync } from '../reactHelper';
+import { reverseCoordinates } from './mapUtil';
+
+const GeofenceMap = () => {
+ const id = 'geofences';
+
+ const [geofences, setGeofences] = useState([]);
+
+ useEffectAsync(async () => {
+ const response = await fetch('/api/geofences');
+ if (response.ok) {
+ setGeofences(await response.json());
+ }
+ }, []);
+
+ useEffect(() => {
+ map.addSource(id, {
+ 'type': 'geojson',
+ 'data': {
+ type: 'FeatureCollection',
+ features: []
+ }
+ });
+ map.addLayer({
+ 'id': id,
+ 'type': 'fill',
+ 'source': id,
+ 'layout': {},
+ 'paint': {
+ 'fill-color': '#088',
+ 'fill-opacity': 0.8
+ }
+ });
+
+ return () => {
+ map.removeLayer(id);
+ map.removeSource(id);
+ };
+ }, []);
+
+ useEffect(() => {
+ map.getSource(id).setData({
+ type: 'FeatureCollection',
+ features: geofences.map(item => [item.name, reverseCoordinates(wellknown(item.area))]).filter(([, geometry]) => !!geometry).map(([name, geometry]) => ({
+ type: 'Feature',
+ geometry: geometry,
+ properties: { name },
+ })),
+ });
+ }, [geofences]);
+
+ return null;
+}
+
+export default GeofenceMap;