diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-12-01 23:15:22 -0800 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2021-12-01 23:15:22 -0800 |
commit | f00ddba99b1d56c9471b19e68c8354ed27749d36 (patch) | |
tree | af45b59f50b5078c8fee1ba9c299b7578eed2cfd | |
parent | a8d499612b3e37f0ba3864eb97ea396221be8cb7 (diff) | |
download | trackermap-web-f00ddba99b1d56c9471b19e68c8354ed27749d36.tar.gz trackermap-web-f00ddba99b1d56c9471b19e68c8354ed27749d36.tar.bz2 trackermap-web-f00ddba99b1d56c9471b19e68c8354ed27749d36.zip |
Update LocationIQ keys
-rw-r--r-- | modern/src/map/Map.js | 2 | ||||
-rw-r--r-- | web/app/view/map/BaseMap.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/map/Map.js b/modern/src/map/Map.js index 65094d77..dcf5a925 100644 --- a/modern/src/map/Map.js +++ b/modern/src/map/Map.js @@ -89,7 +89,7 @@ const Map = ({ children }) => { const mapboxAccessToken = useAttributePreference('mapboxAccessToken'); const mapTilerKey = useAttributePreference('mapTilerKey'); - const locationIqKey = useAttributePreference('locationIqKey', 'pk.b34237342901fc175252c790d1674dcc'); + const locationIqKey = useAttributePreference('locationIqKey', 'pk.0f147952a41c555a5b70614039fd148b'); useEffect(() => { maplibregl.accessToken = mapboxAccessToken; diff --git a/web/app/view/map/BaseMap.js b/web/app/view/map/BaseMap.js index e280de8e..c27a8d79 100644 --- a/web/app/view/map/BaseMap.js +++ b/web/app/view/map/BaseMap.js @@ -36,7 +36,7 @@ Ext.define('Traccar.view.map.BaseMap', { type = Traccar.app.getPreference('map', null); bingKey = server.get('bingKey'); - locationIqKey = Traccar.app.getAttributePreference('locationIqKey', 'pk.b34237342901fc175252c790d1674dcc'); + locationIqKey = Traccar.app.getAttributePreference('locationIqKey', 'pk.0f147952a41c555a5b70614039fd148b'); layer = new ol.layer.Group({ title: Strings.mapLayer, |