Class LatLongOutline
- java.lang.Object
-
- com.trx.neon.api.neonEnvironment.model.LatLongOutline
-
- All Implemented Interfaces:
android.os.Parcelable
public class LatLongOutline extends java.lang.Object implements android.os.Parcelable
An outline defined as a list of Latitude-Longitude pairs that make up an outer hull and a set of inner holes. Comparable to PolygonWithHoles
-
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator<LatLongOutline>
CREATOR
java.util.ArrayList<java.util.ArrayList<LatLong>>
Holes
A set of Latitude-Longitude points inside the hull that form interior holes in the outlinejava.util.ArrayList<LatLong>
Hull
A set of Latitude-Longitude points that form an outer outline
-
Constructor Summary
Constructors Constructor Description LatLongOutline(android.os.Parcel in)
Used for sending data across bindersLatLongOutline(java.util.ArrayList<LatLong> hull, java.util.ArrayList<java.util.ArrayList<LatLong>> holes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
void
writeToParcel(android.os.Parcel dest, int flags)
-
-
-
Field Detail
-
Hull
public final java.util.ArrayList<LatLong> Hull
A set of Latitude-Longitude points that form an outer outline
-
Holes
public final java.util.ArrayList<java.util.ArrayList<LatLong>> Holes
A set of Latitude-Longitude points inside the hull that form interior holes in the outline
-
CREATOR
public static final android.os.Parcelable.Creator<LatLongOutline> CREATOR
-
-