aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/MapRoutePath.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-05-26 16:36:05 -0700
committerAnton Tananaev <anton@traccar.org>2022-05-26 16:36:05 -0700
commitd2af6d5f6b24928d63d7ce7152b4eab4ade7a5b0 (patch)
tree4b5c40e81d0b615469c6842a9b6603ed4b3964af /modern/src/map/MapRoutePath.js
parent6226b06271ae75e0be28dd16c64cf2e3c7392718 (diff)
downloadtrackermap-web-d2af6d5f6b24928d63d7ce7152b4eab4ade7a5b0.tar.gz
trackermap-web-d2af6d5f6b24928d63d7ce7152b4eab4ade7a5b0.tar.bz2
trackermap-web-d2af6d5f6b24928d63d7ce7152b4eab4ade7a5b0.zip
Rename path map plugin
Diffstat (limited to 'modern/src/map/MapRoutePath.js')
-rw-r--r--modern/src/map/MapRoutePath.js83
1 files changed, 83 insertions, 0 deletions
diff --git a/modern/src/map/MapRoutePath.js b/modern/src/map/MapRoutePath.js
new file mode 100644
index 00000000..5797e6dd
--- /dev/null
+++ b/modern/src/map/MapRoutePath.js
@@ -0,0 +1,83 @@
+import maplibregl from 'maplibre-gl';
+import { useEffect } from 'react';
+import { useSelector } from 'react-redux';
+import { map } from './core/Map';
+
+const MapRoutePath = ({ positions }) => {
+ const id = 'replay';
+
+ const reportColor = useSelector((state) => {
+ const position = positions.find(() => true);
+ if (position) {
+ const attributes = state.devices.items[position.deviceId]?.attributes;
+ if (attributes) {
+ const color = attributes['web.reportColor'];
+ if (color) {
+ return color;
+ }
+ }
+ }
+ return '#3bb2d0';
+ });
+
+ useEffect(() => {
+ map.addSource(id, {
+ type: 'geojson',
+ data: {
+ type: 'Feature',
+ geometry: {
+ type: 'LineString',
+ coordinates: [],
+ },
+ },
+ });
+ map.addLayer({
+ source: id,
+ id,
+ type: 'line',
+ layout: {
+ 'line-join': 'round',
+ 'line-cap': 'round',
+ },
+ paint: {
+ 'line-color': ['get', 'color'],
+ 'line-width': 2,
+ },
+ });
+
+ return () => {
+ if (map.getLayer(id)) {
+ map.removeLayer(id);
+ }
+ if (map.getSource(id)) {
+ map.removeSource(id);
+ }
+ };
+ }, []);
+
+ useEffect(() => {
+ const coordinates = positions.map((item) => [item.longitude, item.latitude]);
+ map.getSource(id).setData({
+ type: 'Feature',
+ geometry: {
+ type: 'LineString',
+ coordinates,
+ },
+ properties: {
+ color: reportColor,
+ },
+ });
+ if (coordinates.length) {
+ const bounds = coordinates.reduce((bounds, item) => bounds.extend(item), new maplibregl.LngLatBounds(coordinates[0], coordinates[0]));
+ map.fitBounds(bounds, {
+ padding: {
+ top: 50, bottom: 250, left: 25, right: 25,
+ },
+ });
+ }
+ }, [positions, reportColor]);
+
+ return null;
+};
+
+export default MapRoutePath;