diff options
-rw-r--r-- | modern/src/map/Map.js | 4 | ||||
-rw-r--r-- | web/l10n/en.json | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/modern/src/map/Map.js b/modern/src/map/Map.js index 1e75d30a..8a43e97b 100644 --- a/modern/src/map/Map.js +++ b/modern/src/map/Map.js @@ -56,7 +56,9 @@ map.addControl(new SwitcherControl( [ { title: t('mapOsm'), uri: styleOsm() }, { title: t('mapCarto'), uri: styleCarto() }, - { title: 'Mapbox Streets', uri: styleMapbox('streets-v11') }, + { title: t('mapMapboxStreets'), uri: styleMapbox('streets-v11') }, + { title: t('mapMapboxOutdoors'), uri: styleMapbox('outdoors-v11') }, + { title: t('mapMapboxSatellite'), uri: styleMapbox('satellite-v9') }, ], t('mapOsm'), () => updateReadyValue(false), diff --git a/web/l10n/en.json b/web/l10n/en.json index 38670418..4f0825c5 100644 --- a/web/l10n/en.json +++ b/web/l10n/en.json @@ -254,6 +254,9 @@ "mapYandexMap": "Yandex Map", "mapYandexSat": "Yandex Satellite", "mapWikimedia": "Wikimedia", + "mapMapboxStreets": "Mapbox Streets", + "mapMapboxOutdoors": "Mapbox Outdoors", + "mapMapboxSatellite": "Mapbox Satellite", "mapShapePolygon": "Polygon", "mapShapeCircle": "Circle", "mapShapePolyline": "Polyline", |