diff options
author | Łukasz Paczos <lukasz.paczos@mapbox.com> | 2018-12-19 16:03:10 +0100 |
---|---|---|
committer | Łukasz Paczos <lukasz.paczos@mapbox.com> | 2018-12-19 17:37:52 +0100 |
commit | 46ddb7c0c1c348696e2e2559355e1910a7abb616 (patch) | |
tree | 235185f28f0656bb7298c384182312589bed8290 /platform | |
parent | bd4a0592f893eccb99c01378f0ea26c332f91695 (diff) | |
download | qtlocation-mapboxgl-46ddb7c0c1c348696e2e2559355e1910a7abb616.tar.gz |
[android] update core styles
includes:
streets-v11
outdoors-v11
light-v10
dark-v10
satellite-streets-v11
Diffstat (limited to 'platform')
-rw-r--r-- | platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/Style.java | 10 | ||||
-rw-r--r-- | platform/android/MapboxGLAndroidSDK/src/main/res/values/strings.xml | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/Style.java b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/Style.java index d1f3da178d..6ae27ede79 100644 --- a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/Style.java +++ b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/Style.java @@ -756,25 +756,25 @@ public class Style { * constant means your map style will always use the latest version and may change as we * improve the style. */ - public static final String MAPBOX_STREETS = "mapbox://styles/mapbox/streets-v10"; + public static final String MAPBOX_STREETS = "mapbox://styles/mapbox/streets-v11"; /** * Outdoors: A general-purpose style tailored to outdoor activities. Using this constant means * your map style will always use the latest version and may change as we improve the style. */ - public static final String OUTDOORS = "mapbox://styles/mapbox/outdoors-v10"; + public static final String OUTDOORS = "mapbox://styles/mapbox/outdoors-v11"; /** * Light: Subtle light backdrop for data visualizations. Using this constant means your map * style will always use the latest version and may change as we improve the style. */ - public static final String LIGHT = "mapbox://styles/mapbox/light-v9"; + public static final String LIGHT = "mapbox://styles/mapbox/light-v10"; /** * Dark: Subtle dark backdrop for data visualizations. Using this constant means your map style * will always use the latest version and may change as we improve the style. */ - public static final String DARK = "mapbox://styles/mapbox/dark-v9"; + public static final String DARK = "mapbox://styles/mapbox/dark-v10"; /** * Satellite: A beautiful global satellite and aerial imagery layer. Using this constant means @@ -787,7 +787,7 @@ public class Style { * constant means your map style will always use the latest version and may change as we * improve the style. */ - public static final String SATELLITE_STREETS = "mapbox://styles/mapbox/satellite-streets-v10"; + public static final String SATELLITE_STREETS = "mapbox://styles/mapbox/satellite-streets-v11"; /** * Traffic Day: Color-coded roads based on live traffic congestion data. Traffic data is currently diff --git a/platform/android/MapboxGLAndroidSDK/src/main/res/values/strings.xml b/platform/android/MapboxGLAndroidSDK/src/main/res/values/strings.xml index 693b62b2a9..e818cf88fd 100644 --- a/platform/android/MapboxGLAndroidSDK/src/main/res/values/strings.xml +++ b/platform/android/MapboxGLAndroidSDK/src/main/res/values/strings.xml @@ -19,12 +19,12 @@ <!-- these are public --> <!-- Using one of these constants means your map style will always use the latest version and may change as we improve the style. --> - <string name="mapbox_style_mapbox_streets" translatable="false">mapbox://styles/mapbox/streets-v10</string> - <string name="mapbox_style_outdoors" translatable="false">mapbox://styles/mapbox/outdoors-v10</string> - <string name="mapbox_style_light" translatable="false">mapbox://styles/mapbox/light-v9</string> - <string name="mapbox_style_dark" translatable="false">mapbox://styles/mapbox/dark-v9</string> + <string name="mapbox_style_mapbox_streets" translatable="false">mapbox://styles/mapbox/streets-v11</string> + <string name="mapbox_style_outdoors" translatable="false">mapbox://styles/mapbox/outdoors-v11</string> + <string name="mapbox_style_light" translatable="false">mapbox://styles/mapbox/light-v10</string> + <string name="mapbox_style_dark" translatable="false">mapbox://styles/mapbox/dark-v10</string> <string name="mapbox_style_satellite" translatable="false">mapbox://styles/mapbox/satellite-v9</string> - <string name="mapbox_style_satellite_streets" translatable="false">mapbox://styles/mapbox/satellite-streets-v10</string> + <string name="mapbox_style_satellite_streets" translatable="false">mapbox://styles/mapbox/satellite-streets-v11</string> <string name="mapbox_style_traffic_day" translatable="false">mapbox://styles/mapbox/traffic-day-v2</string> <string name="mapbox_style_traffic_night" translatable="false">mapbox://styles/mapbox/traffic-night-v2</string> </resources> |