diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-10-24 22:24:23 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-10-24 22:24:23 -0700 |
commit | 8d32ac6e16c2b9ceb2a23edf0d6254d1e318c31b (patch) | |
tree | 751d81e1807a13368b58f9e924fd3d0fd94b2ad3 /modern/src/map/GeofenceMap.js | |
parent | 5b8419500610e9a62a264819d7ed7857ac35ac69 (diff) | |
download | etbsa-traccar-web-8d32ac6e16c2b9ceb2a23edf0d6254d1e318c31b.tar.gz etbsa-traccar-web-8d32ac6e16c2b9ceb2a23edf0d6254d1e318c31b.tar.bz2 etbsa-traccar-web-8d32ac6e16c2b9ceb2a23edf0d6254d1e318c31b.zip |
Add geofence editing
Diffstat (limited to 'modern/src/map/GeofenceMap.js')
-rw-r--r-- | modern/src/map/GeofenceMap.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modern/src/map/GeofenceMap.js b/modern/src/map/GeofenceMap.js new file mode 100644 index 0000000..bca4d20 --- /dev/null +++ b/modern/src/map/GeofenceMap.js @@ -0,0 +1,25 @@ +import '@mapbox/mapbox-gl-draw/dist/mapbox-gl-draw.css' +import MapboxDraw from '@mapbox/mapbox-gl-draw'; +import { useEffect } from 'react'; + +import { map } from './Map'; + +const draw = new MapboxDraw({ + displayControlsDefault: false, + controls: { + polygon: true, + trash: true, + }, +}); + +const GeofenceMap = () => { + useEffect(() => { + const mm = map; + map.addControl(draw, 'top-left'); + return () => map.removeControl(draw); + }, []); + + return null; +} + +export default GeofenceMap; |