summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java')
-rw-r--r--platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java
index a5a6ede1dd..8c91ad9174 100644
--- a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java
+++ b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java
@@ -77,9 +77,6 @@ public class MapboxMapOptions implements Parcelable {
@ColorInt
private int foregroundLoadColor;
- private String styleUrl;
- private String styleJson;
-
private float pixelRatio;
private boolean crossSourceCollisions = true;
@@ -122,8 +119,6 @@ public class MapboxMapOptions implements Parcelable {
zoomGesturesEnabled = in.readByte() != 0;
doubleTapGesturesEnabled = in.readByte() != 0;
- styleUrl = in.readString();
- styleJson = in.readString();
apiBaseUrl = in.readString();
textureMode = in.readByte() != 0;
translucentTextureSurface = in.readByte() != 0;
@@ -149,8 +144,6 @@ public class MapboxMapOptions implements Parcelable {
TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.mapbox_MapView, 0, 0);
try {
mapboxMapOptions.camera(new CameraPosition.Builder(typedArray).build());
- mapboxMapOptions.styleUrl(typedArray.getString(R.styleable.mapbox_MapView_mapbox_styleUrl));
- mapboxMapOptions.styleJson(typedArray.getString(R.styleable.mapbox_MapView_mapbox_styleJson));
mapboxMapOptions.apiBaseUrl(typedArray.getString(R.styleable.mapbox_MapView_mapbox_apiBaseUrl));
mapboxMapOptions.zoomGesturesEnabled(
@@ -267,30 +260,6 @@ public class MapboxMapOptions implements Parcelable {
}
/**
- * Specifies the styleUrl url associated with a map view.
- *
- * @param styleUrl Url to be used to load a styleUrl
- * @return This
- */
- @NonNull
- public MapboxMapOptions styleUrl(String styleUrl) {
- this.styleUrl = styleUrl;
- return this;
- }
-
- /**
- * Specifies the styleJson associated with a map view.
- *
- * @param styleJson json to used as style
- * @return This
- */
- @NonNull
- public MapboxMapOptions styleJson(String styleJson) {
- this.styleJson = styleJson;
- return this;
- }
-
- /**
* Specifies the used debug type for a map view.
*
* @param enabled True is debug is enabled
@@ -777,24 +746,6 @@ public class MapboxMapOptions implements Parcelable {
}
/**
- * Get the current configured styleUrl url for a map view.
- *
- * @return Style url to be used.
- */
- public String getStyleUrl() {
- return styleUrl;
- }
-
- /**
- * Get the current configured styleJson for a map view.
- *
- * @return Style json to be used.
- */
- public String getStyleJson() {
- return styleJson;
- }
-
- /**
* Get the current configured rotate gesture state for a map view.
*
* @return True indicates gesture is enabled
@@ -972,8 +923,6 @@ public class MapboxMapOptions implements Parcelable {
dest.writeByte((byte) (zoomGesturesEnabled ? 1 : 0));
dest.writeByte((byte) (doubleTapGesturesEnabled ? 1 : 0));
- dest.writeString(styleUrl);
- dest.writeString(styleJson);
dest.writeString(apiBaseUrl);
dest.writeByte((byte) (textureMode ? 1 : 0));
dest.writeByte((byte) (translucentTextureSurface ? 1 : 0));
@@ -1061,13 +1010,6 @@ public class MapboxMapOptions implements Parcelable {
if (!Arrays.equals(attributionMargins, options.attributionMargins)) {
return false;
}
- if (styleUrl != null ? !styleUrl.equals(options.styleUrl) : options.styleUrl != null) {
- return false;
- }
-
- if (styleJson != null ? !styleJson.equals(options.styleJson) : options.styleJson != null) {
- return false;
- }
if (apiBaseUrl != null ? !apiBaseUrl.equals(options.apiBaseUrl) : options.apiBaseUrl != null) {
return false;
@@ -1122,8 +1064,6 @@ public class MapboxMapOptions implements Parcelable {
result = 31 * result + (apiBaseUrl != null ? apiBaseUrl.hashCode() : 0);
result = 31 * result + (textureMode ? 1 : 0);
result = 31 * result + (translucentTextureSurface ? 1 : 0);
- result = 31 * result + (styleUrl != null ? styleUrl.hashCode() : 0);
- result = 31 * result + (styleJson != null ? styleJson.hashCode() : 0);
result = 31 * result + (prefetchesTiles ? 1 : 0);
result = 31 * result + (zMediaOverlay ? 1 : 0);
result = 31 * result + (localIdeographFontFamily != null ? localIdeographFontFamily.hashCode() : 0);