From 2cf9dc0dd6257ba4ce0d4d6f1bea696eb12ab466 Mon Sep 17 00:00:00 2001 From: Tobrun Van Nuland Date: Fri, 25 Aug 2017 10:08:54 +0200 Subject: [android] - update style constants, add test --- .../java/com/mapbox/mapboxsdk/constants/Style.java | 37 +++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) (limited to 'platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/constants/Style.java') diff --git a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/constants/Style.java b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/constants/Style.java index 9943a72e06..ab31dd4097 100644 --- a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/constants/Style.java +++ b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/constants/Style.java @@ -22,7 +22,8 @@ public class Style { * constants means your map style will always use the latest version and may change as we * improve the style */ - @StringDef( {MAPBOX_STREETS, OUTDOORS, LIGHT, DARK, SATELLITE, SATELLITE_STREETS, TRAFFIC_DAY, TRAFFIC_NIGHT}) + @StringDef( {MAPBOX_STREETS, OUTDOORS, LIGHT, DARK, SATELLITE, SATELLITE_STREETS, TRAFFIC_DAY, TRAFFIC_NIGHT, + NAVIGATION_GUIDANCE_DAY, NAVIGATION_GUIDANCE_NIGHT, NAVIGATION_PREVIEW_DAY, NAVIGATION_PREVIEW_NIGHT}) @Retention(RetentionPolicy.SOURCE) public @interface StyleUrl { } @@ -73,7 +74,10 @@ public class Style { * these select * countries. Using this constant means your map style will always use the latest version and * may change as we improve the style. + * + * @deprecated Use {@link Style#NAVIGATION_PREVIEW_DAY} and {@link Style#NAVIGATION_GUIDANCE_DAY} instead. */ + @Deprecated public static final String TRAFFIC_DAY = "mapbox://styles/mapbox/traffic-day-v2"; /** @@ -82,6 +86,37 @@ public class Style { * these select * countries. Using this constant means your map style will always use the latest version and * may change as we improve the style. + * + * @deprecated Use {@link Style#NAVIGATION_PREVIEW_NIGHT} and {@link Style#NAVIGATION_GUIDANCE_NIGHT} instead. */ + @Deprecated public static final String TRAFFIC_NIGHT = "mapbox://styles/mapbox/traffic-night-v2"; + + /** + * Navigation Preview Day: TBA. + * 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 NAVIGATION_PREVIEW_DAY = "mapbox://styles/mapbox/navigation-preview-day-v2"; + + /** + * Navigation Guidance Day: TBA. + * 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 NAVIGATION_GUIDANCE_DAY = "mapbox://styles/mapbox/navigation-guidance-day-v2"; + + /** + * Navigation Preview Night: TBA. + * 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 NAVIGATION_PREVIEW_NIGHT = "mapbox://styles/mapbox/navigation-preview-night-v2"; + + /** + * Navigation Guidance Night: TBA. + * 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 NAVIGATION_GUIDANCE_NIGHT = "mapbox://styles/mapbox/navigation-guidance-night-v2"; } -- cgit v1.2.1