Package com.google.maps.android.data
Interface Geometry<T>
-
- Type Parameters:
T- the type of Geometry object
- All Known Subinterfaces:
DataPolygon<T>
- All Known Implementing Classes:
GeoJsonGeometryCollection,GeoJsonLineString,GeoJsonMultiLineString,GeoJsonMultiPoint,GeoJsonMultiPolygon,GeoJsonPoint,GeoJsonPolygon,KmlLineString,KmlMultiGeometry,KmlMultiTrack,KmlPoint,KmlPolygon,KmlTrack,LineString,MultiGeometry,Point
public interface Geometry<T>An abstraction that represents a Geometry object
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TgetGeometryObject()Gets the stored KML Geometry objectjava.lang.StringgetGeometryType()Gets the type of geometry
-
-
-
Method Detail
-
getGeometryType
java.lang.String getGeometryType()
Gets the type of geometry- Returns:
- type of geometry
-
getGeometryObject
T getGeometryObject()
Gets the stored KML Geometry object- Returns:
- geometry object
-
-