-
- All Implemented Interfaces:
-
com.google.maps.android.data.Geometry
public class GeoJsonMultiPoint extends MultiGeometry
A GeoJsonMultiPoint geometry contains a number of GeoJsonPoints.
-
-
Constructor Summary
Constructors Constructor Description GeoJsonMultiPoint(List<GeoJsonPoint> geoJsonPoints)Creates a GeoJsonMultiPoint object
-
Method Summary
Modifier and Type Method Description StringgetType()Gets the type of geometry. List<GeoJsonPoint>getPoints()Gets a list of GeoJsonPoints -
Methods inherited from class com.google.maps.android.data.MultiGeometry
getGeometryObject, getGeometryType, setGeometryType, toString -
Methods inherited from class com.google.maps.android.data.Geometry
getGeometryObject -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
GeoJsonMultiPoint
GeoJsonMultiPoint(List<GeoJsonPoint> geoJsonPoints)
Creates a GeoJsonMultiPoint object- Parameters:
geoJsonPoints- list of GeoJsonPoints to store
-
-
Method Detail
-
getType
String getType()
Gets the type of geometry. The type of geometry conforms to the GeoJSON 'type'specification.
-
getPoints
List<GeoJsonPoint> getPoints()
Gets a list of GeoJsonPoints
-
-
-
-