Package com.mapbox.geojson
Interface CoordinateContainer<T>
-
- Type Parameters:
T- a generic allowing varying dimensions for each GeoJson geometry
- All Known Implementing Classes:
LineString,MultiLineString,MultiPoint,MultiPolygon,Point,Polygon
public interface CoordinateContainer<T> extends Geometry
Each of the s geometries which make up GeoJson implement this interface and consume a varying dimension ofPointlist. Since this is varying, each geometry object fulfills the contract by replacing the generic with a well defined list of Points.- Since:
- 3.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcoordinates()the coordinates which define the geometry.
-