diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-28 08:16:24 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-28 08:16:24 -0700 |
commit | 2870790d4d1a53af27c41f1591720c38c7c95520 (patch) | |
tree | bb9de8a34434655539d4a6c50c07a9e96b0600dd /modern/src/settings | |
parent | c615c9e2f0acf91684d4cb6d9555eccf403971d2 (diff) | |
download | trackermap-web-2870790d4d1a53af27c41f1591720c38c7c95520.tar.gz trackermap-web-2870790d4d1a53af27c41f1591720c38c7c95520.tar.bz2 trackermap-web-2870790d4d1a53af27c41f1591720c38c7c95520.zip |
Show map on selection (fix #948)
Diffstat (limited to 'modern/src/settings')
-rw-r--r-- | modern/src/settings/PreferencesPage.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/modern/src/settings/PreferencesPage.js b/modern/src/settings/PreferencesPage.js index 64268e63..0db13aa2 100644 --- a/modern/src/settings/PreferencesPage.js +++ b/modern/src/settings/PreferencesPage.js @@ -48,6 +48,7 @@ const PreferencesPage = () => { const [mapLiveRoutes, setMapLiveRoutes] = usePersistedState('mapLiveRoutes', false); const [mapFollow, setMapFollow] = usePersistedState('mapFollow', false); const [mapCluster, setMapCluster] = usePersistedState('mapCluster', true); + const [mapMapOnSelect, setMapOnSelect] = usePersistedState('mapOnSelect', false); const alarms = useTranslationKeys((it) => it.startsWith('alarm')).map((it) => ({ key: unprefixString('alarm', it), @@ -101,17 +102,21 @@ const PreferencesPage = () => { </FormControl> <FormGroup> <FormControlLabel - control={<Checkbox checked={mapLiveRoutes} onChange={(event) => setMapLiveRoutes(event.target.checked)} />} + control={<Checkbox checked={mapLiveRoutes} onChange={(e) => setMapLiveRoutes(e.target.checked)} />} label={t('mapLiveRoutes')} /> <FormControlLabel - control={<Checkbox checked={mapFollow} onChange={(event) => setMapFollow(event.target.checked)} />} + control={<Checkbox checked={mapFollow} onChange={(e) => setMapFollow(e.target.checked)} />} label={t('deviceFollow')} /> <FormControlLabel - control={<Checkbox checked={mapCluster} onChange={(event) => setMapCluster(event.target.checked)} />} + control={<Checkbox checked={mapCluster} onChange={(endpoint) => setMapCluster(e.target.checked)} />} label={t('mapClustering')} /> + <FormControlLabel + control={<Checkbox checked={mapMapOnSelect} onChange={(e) => setMapOnSelect(e.target.checked)} />} + label={t('mapOnSelect')} + /> </FormGroup> </AccordionDetails> </Accordion> |