summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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:30:43 +0100
commite10f149bd601321842d4dc0485de5caad73cfb89 (patch)
treec0940d49277f41cef5520b89c1e88394c911fc02
parent83f1c928ac0572f3ae6368dc17393d07f9fe99c0 (diff)
downloadqtlocation-mapboxgl-e10f149bd601321842d4dc0485de5caad73cfb89.tar.gz
[android] update core styles
includes: streets-v11 outdoors-v11 light-v10 dark-v10 satellite-streets-v11 (cherry picked from commit 01a3780)
-rw-r--r--platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/Style.java10
-rw-r--r--platform/android/MapboxGLAndroidSDK/src/main/res/values/strings.xml10
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>