diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2022-06-21 16:24:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 16:24:36 -0700 |
commit | 9f03571e5c6bd532ac177615066f830e1c8939e3 (patch) | |
tree | cbbb1c03fe639ca7e043b636f5e1e31c387c629e | |
parent | 6360be5047ef7a932522113e7c51b6f265d8d9b7 (diff) | |
parent | 0e1686decab32ebed5b7af3e37d381ad8b5ee5c4 (diff) | |
download | trackermap-web-9f03571e5c6bd532ac177615066f830e1c8939e3.tar.gz trackermap-web-9f03571e5c6bd532ac177615066f830e1c8939e3.tar.bz2 trackermap-web-9f03571e5c6bd532ac177615066f830e1c8939e3.zip |
Merge pull request #966 from BIhab/add-maxzoom-feature
feature: max zoom on map
-rw-r--r-- | modern/src/common/attributes/useCommonUserAttributes.js | 4 | ||||
-rw-r--r-- | modern/src/map/core/MapView.js | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/modern/src/common/attributes/useCommonUserAttributes.js b/modern/src/common/attributes/useCommonUserAttributes.js index da19885e..1409c5ac 100644 --- a/modern/src/common/attributes/useCommonUserAttributes.js +++ b/modern/src/common/attributes/useCommonUserAttributes.js @@ -64,12 +64,12 @@ export default (t) => useMemo(() => ({ 'web.selectZoom': { name: t('attributeWebSelectZoom'), type: 'number', - }, + }, */ 'web.maxZoom': { name: t('attributeWebMaxZoom'), type: 'number', }, - 'ui.hidePositionAttributes': { + /* 'ui.hidePositionAttributes': { name: t('attributeUiHidePositionAttributes'), type: 'string', }, */ diff --git a/modern/src/map/core/MapView.js b/modern/src/map/core/MapView.js index 20e84185..98865157 100644 --- a/modern/src/map/core/MapView.js +++ b/modern/src/map/core/MapView.js @@ -78,6 +78,13 @@ const MapView = ({ children }) => { const [activeMapStyles] = usePersistedState('activeMapStyles', ['locationIqStreets', 'osm', 'carto']); const [defaultMapStyle] = usePersistedState('selectedMapStyle', 'locationIqStreets'); const mapboxAccessToken = useAttributePreference('mapboxAccessToken'); + const maxZoom = useAttributePreference('web.maxZoom'); + + useEffect(() => { + if (maxZoom) { + map.setMaxZoom(maxZoom); + } + }, [maxZoom]); useEffect(() => { maplibregl.accessToken = mapboxAccessToken; |