diff options
author | Anton Tananaev <anton@traccar.org> | 2022-08-17 07:03:25 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-08-17 07:03:25 -0700 |
commit | 6ec5eaf47904fbec5ac7ecd1939291e3aab60530 (patch) | |
tree | 599a59cdcbce26207090662f97ad4e8073a26c09 /modern/src/other/ReplayPage.js | |
parent | 13eaaebb02814e539648c3bc545c3e3d07f204c3 (diff) | |
download | trackermap-web-6ec5eaf47904fbec5ac7ecd1939291e3aab60530.tar.gz trackermap-web-6ec5eaf47904fbec5ac7ecd1939291e3aab60530.tar.bz2 trackermap-web-6ec5eaf47904fbec5ac7ecd1939291e3aab60530.zip |
Geofences on most maps
Diffstat (limited to 'modern/src/other/ReplayPage.js')
-rw-r--r-- | modern/src/other/ReplayPage.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modern/src/other/ReplayPage.js b/modern/src/other/ReplayPage.js index 556f5a87..46f7571c 100644 --- a/modern/src/other/ReplayPage.js +++ b/modern/src/other/ReplayPage.js @@ -22,6 +22,7 @@ import ReportFilter from '../reports/components/ReportFilter'; import { useTranslation } from '../common/components/LocalizationProvider'; import { useCatch } from '../reactHelper'; import MapCamera from '../map/MapCamera'; +import MapGeofence from '../map/MapGeofence'; const useStyles = makeStyles((theme) => ({ root: { @@ -151,6 +152,7 @@ const ReplayPage = () => { return ( <div className={classes.root}> <MapView> + <MapGeofence /> <MapRoutePath positions={positions} /> {index < positions.length && ( <MapPositions positions={[positions[index]]} onClick={onClick} /> |