aboutsummaryrefslogtreecommitdiff
path: root/modern/src/MainPage.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/MainPage.js')
-rw-r--r--modern/src/MainPage.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/modern/src/MainPage.js b/modern/src/MainPage.js
index ebd739d2..ccb3f83f 100644
--- a/modern/src/MainPage.js
+++ b/modern/src/MainPage.js
@@ -26,6 +26,8 @@ import MapPadding from './map/MapPadding';
import StatusCard from './map/StatusCard';
import { devicesActions } from './store';
import DefaultCameraMap from './map/DefaultCameraMap';
+import usePersistedState from './common/usePersistedState';
+import LiveRoutesMap from './map/LiveRoutesMap';
const useStyles = makeStyles((theme) => ({
root: {
@@ -120,6 +122,8 @@ const MainPage = () => {
const isTablet = useMediaQuery(theme.breakpoints.down('md'));
const isPhone = useMediaQuery(theme.breakpoints.down('xs'));
+ const [mapLiveRoutes] = usePersistedState('mapLiveRoutes', false);
+
const selectedDeviceId = useSelector((state) => state.devices.selectedId);
const [searchKeyword, setSearchKeyword] = useState('');
@@ -138,6 +142,7 @@ const MainPage = () => {
<CurrentLocationMap />
<GeofenceMap />
<AccuracyMap />
+ {mapLiveRoutes && <LiveRoutesMap />}
<CurrentPositionsMap />
<DefaultCameraMap />
<SelectedDeviceMap />