Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Keep OfflineGeometryRegionDefinition fields and constructor #12734

Merged
merged 1 commit into from
Aug 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import android.os.Parcel;
import android.os.Parcelable;
import android.support.annotation.Keep;

import com.mapbox.geojson.Feature;
import com.mapbox.geojson.Geometry;
Expand All @@ -21,10 +22,15 @@
*/
public class OfflineGeometryRegionDefinition implements OfflineRegionDefinition, Parcelable {

@Keep
private String styleURL;
@Keep
private Geometry geometry;
@Keep
private double minZoom;
@Keep
private double maxZoom;
@Keep
private float pixelRatio;

/**
Expand All @@ -36,6 +42,7 @@ public class OfflineGeometryRegionDefinition implements OfflineRegionDefinition,
* @param maxZoom max zoom
* @param pixelRatio pixel ratio of the device
*/
@Keep
public OfflineGeometryRegionDefinition(
String styleURL, Geometry geometry, double minZoom, double maxZoom, float pixelRatio) {
// Note: Also used in JNI
Expand Down