Package com.mapbox.geojson
Class MultiPolygon
java.lang.Object
com.mapbox.geojson.MultiPolygon
- All Implemented Interfaces:
CoordinateContainer<List<List<List<Point>>>>,GeoJson,Geometry,Serializable
public final class MultiPolygon
extends Object
implements CoordinateContainer<List<List<List<Point>>>>
A multiPolygon is an array of Polygon coordinate arrays.
This adheres to the RFC 7946 internet standard when serialized into JSON. When deserialized, this class becomes an immutable object which should be initiated using its static factory methods.
When representing a Polygon that crosses the antimeridian, interoperability is improved by modifying their geometry. Any geometry that crosses the antimeridian SHOULD be represented by cutting it in two such that neither part's representation crosses the antimeridian.
For example, a line extending from 45 degrees N, 170 degrees E across the antimeridian to 45 degrees N, 170 degrees W should be cut in two and represented as a MultiLineString.
A sample GeoJson MultiPolygon's provided below (in it's serialized state).
{
"type": "MultiPolygon",
"coordinates": [
[
[
[102.0, 2.0],
[103.0, 2.0],
[103.0, 3.0],
[102.0, 3.0],
[102.0, 2.0]
]
],
[
[
[100.0, 0.0],
[101.0, 0.0],
[101.0, 1.0],
[100.0, 1.0],
[100.0, 0.0]
],
[
[100.2, 0.2],
[100.2, 0.8],
[100.8, 0.8],
[100.8, 0.2],
[100.2, 0.2]
]
]
]
}
Look over the Polygon documentation to get more information about
formatting your list of Polygon objects correctly.- Since:
- 1.0.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbbox()A Feature Collection might have a member namedbboxto include information on the coordinate range for it'sFeatures.Provides the list of list of list ofPoints that make up the MultiPolygon geometry.booleanstatic MultiPolygonCreate a new instance of this class by passing in a formatted valid JSON String.static MultiPolygonfromLngLats(List<List<List<Point>>> points) Create a new instance of this class by defining a list of a list of a list ofPoints which follow the correct specifications described in the Point documentation.static MultiPolygonfromLngLats(List<List<List<Point>>> points, BoundingBox bbox) Create a new instance of this class by defining a list of a list of a list ofPoints which follow the correct specifications described in the Point documentation.static MultiPolygonfromPolygon(Polygon polygon) Create a new instance of this class by defining a singlePolygonobjects and passing it in as a parameter in this method.static MultiPolygonfromPolygon(Polygon polygon, BoundingBox bbox) Create a new instance of this class by defining a singlePolygonobjects and passing it in as a parameter in this method.static MultiPolygonfromPolygons(List<Polygon> polygons) Create a new instance of this class by defining a list ofPolygonobjects and passing that list in as a parameter in this method.static MultiPolygonfromPolygons(List<Polygon> polygons, BoundingBox bbox) Create a new instance of this class by defining a list ofPolygonobjects and passing that list in as a parameter in this method.inthashCode()polygons()Returns a list of polygons which make up this MultiPolygon instance.toJson()This takes the currently defined values found inside this instance and converts it to a GeoJson string.toString()type()This describes the TYPE of GeoJson geometry this object is, thus this will always returnMultiPolygon.static com.google.gson.TypeAdapter<MultiPolygon>typeAdapter(com.google.gson.Gson gson) Gson TYPE adapter for parsing Gson to this class.
-
Method Details
-
fromJson
Create a new instance of this class by passing in a formatted valid JSON String. If you are creating a MultiPolygon object from scratch it is better to use one of the other provided static factory methods such asfromPolygons(List).- Parameters:
json- a formatted valid JSON string defining a GeoJson MultiPolygon- Returns:
- a new instance of this class defined by the values passed inside this static factory method
- Since:
- 1.0.0
-
fromPolygons
Create a new instance of this class by defining a list ofPolygonobjects and passing that list in as a parameter in this method. The Polygons should comply with the GeoJson specifications described in the documentation.- Parameters:
polygons- a list of Polygons which make up this MultiPolygon- Returns:
- a new instance of this class defined by the values passed inside this static factory method
- Since:
- 3.0.0
-
fromPolygons
public static MultiPolygon fromPolygons(@NonNull List<Polygon> polygons, @Nullable BoundingBox bbox) Create a new instance of this class by defining a list ofPolygonobjects and passing that list in as a parameter in this method. The Polygons should comply with the GeoJson specifications described in the documentation. Optionally, pass in an instance of aBoundingBoxwhich better describes this MultiPolygon.- Parameters:
polygons- a list of Polygons which make up this MultiPolygonbbox- optionally include a bbox definition- Returns:
- a new instance of this class defined by the values passed inside this static factory method
- Since:
- 3.0.0
-
fromPolygon
Create a new instance of this class by defining a singlePolygonobjects and passing it in as a parameter in this method. The Polygon should comply with the GeoJson specifications described in the documentation.- Parameters:
polygon- a single Polygon which make up this MultiPolygon- Returns:
- a new instance of this class defined by the values passed inside this static factory method
- Since:
- 3.0.0
-
fromPolygon
Create a new instance of this class by defining a singlePolygonobjects and passing it in as a parameter in this method. The Polygon should comply with the GeoJson specifications described in the documentation.- Parameters:
polygon- a single Polygon which make up this MultiPolygonbbox- optionally include a bbox definition- Returns:
- a new instance of this class defined by the values passed inside this static factory method
- Since:
- 3.0.0
-
fromLngLats
Create a new instance of this class by defining a list of a list of a list ofPoints which follow the correct specifications described in the Point documentation.- Parameters:
points- a list ofPoints which make up the MultiPolygon geometry- Returns:
- a new instance of this class defined by the values passed inside this static factory method
- Since:
- 3.0.0
-
fromLngLats
public static MultiPolygon fromLngLats(@NonNull List<List<List<Point>>> points, @Nullable BoundingBox bbox) Create a new instance of this class by defining a list of a list of a list ofPoints which follow the correct specifications described in the Point documentation.- Parameters:
points- a list ofPoints which make up the MultiPolygon geometrybbox- optionally include a bbox definition- Returns:
- a new instance of this class defined by the values passed inside this static factory method
- Since:
- 3.0.0
-
polygons
Returns a list of polygons which make up this MultiPolygon instance.- Returns:
- a list of
Polygons which make up this MultiPolygon instance - Since:
- 3.0.0
-
type
This describes the TYPE of GeoJson geometry this object is, thus this will always returnMultiPolygon. -
bbox
A Feature Collection might have a member namedbboxto include information on the coordinate range for it'sFeatures. The value of the bbox member MUST be a list of size 2*n where n is the number of dimensions represented in the contained feature geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries. -
coordinates
Provides the list of list of list ofPoints that make up the MultiPolygon geometry.- Specified by:
coordinatesin interfaceCoordinateContainer<List<List<List<Point>>>>- Returns:
- a list of points
- Since:
- 3.0.0
-
toJson
This takes the currently defined values found inside this instance and converts it to a GeoJson string. -
typeAdapter
Gson TYPE adapter for parsing Gson to this class.- Parameters:
gson- the builtGsonobject- Returns:
- the TYPE adapter for this class
- Since:
- 3.0.0
-
toString
-
equals
-
hashCode
public int hashCode()
-