diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-11-25 17:04:26 -0800 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2021-11-25 17:04:26 -0800 |
commit | a8d499612b3e37f0ba3864eb97ea396221be8cb7 (patch) | |
tree | 45361b2b8d87d8350a375d3020950452096b07d2 /modern/src/map/mapStyles.js | |
parent | ea72b9f96d6e03a4f9bbbeadcc8f41efbff4427f (diff) | |
download | trackermap-web-a8d499612b3e37f0ba3864eb97ea396221be8cb7.tar.gz trackermap-web-a8d499612b3e37f0ba3864eb97ea396221be8cb7.tar.bz2 trackermap-web-a8d499612b3e37f0ba3864eb97ea396221be8cb7.zip |
Enable LocationIQ by default
Diffstat (limited to 'modern/src/map/mapStyles.js')
-rw-r--r-- | modern/src/map/mapStyles.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modern/src/map/mapStyles.js b/modern/src/map/mapStyles.js index 9650ead5..86813a13 100644 --- a/modern/src/map/mapStyles.js +++ b/modern/src/map/mapStyles.js @@ -51,3 +51,5 @@ export const styleCarto = () => ({ export const styleMapbox = (style) => `mapbox://styles/mapbox/${style}`; export const styleMapTiler = (style, key) => `https://api.maptiler.com/maps/${style}/style.json?key=${key}`; + +export const styleLocationIq = (style, key) => `https://tiles.locationiq.com/v3/${style}/vector.json?key=${key}`; |