aboutsummaryrefslogtreecommitdiff
path: root/modern/src/other/ReplayPage.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-05-22 09:57:51 -0700
committerAnton Tananaev <anton@traccar.org>2022-05-22 09:57:51 -0700
commit67d7ce8e0f428c521d3d032e8145108c9b2a5f45 (patch)
tree9f350497ebc64951ce2070723ab2b66e1a0f5472 /modern/src/other/ReplayPage.js
parent111347e3f40640aa4c43c0bc2666d7a92ce03bb2 (diff)
downloadtrackermap-web-67d7ce8e0f428c521d3d032e8145108c9b2a5f45.tar.gz
trackermap-web-67d7ce8e0f428c521d3d032e8145108c9b2a5f45.tar.bz2
trackermap-web-67d7ce8e0f428c521d3d032e8145108c9b2a5f45.zip
Rename map plugins
Diffstat (limited to 'modern/src/other/ReplayPage.js')
-rw-r--r--modern/src/other/ReplayPage.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/modern/src/other/ReplayPage.js b/modern/src/other/ReplayPage.js
index c1c56ac1..5e759d7e 100644
--- a/modern/src/other/ReplayPage.js
+++ b/modern/src/other/ReplayPage.js
@@ -13,8 +13,8 @@ import FastRewindIcon from '@material-ui/icons/FastRewind';
import { useHistory } from 'react-router-dom';
import { useSelector } from 'react-redux';
import Map from '../map/core/Map';
-import ReplayPathMap from '../map/ReplayPathMap';
-import PositionsMap from '../map/PositionsMap';
+import MapReplayPath from '../map/MapReplayPath';
+import MapPositions from '../map/MapPositions';
import { formatTime } from '../common/util/formatter';
import ReportFilter from '../reports/components/ReportFilter';
import { useTranslation } from '../common/components/LocalizationProvider';
@@ -138,9 +138,9 @@ const ReplayPage = () => {
return (
<div className={classes.root}>
<Map>
- <ReplayPathMap positions={positions} />
+ <MapReplayPath positions={positions} />
{index < positions.length && (
- <PositionsMap positions={[positions[index]]} onClick={onClick} />
+ <MapPositions positions={[positions[index]]} onClick={onClick} />
)}
</Map>
<div className={classes.sidebar}>