Uses of Class
org.bremersee.geojson.model.BoundingBox
-
Packages that use BoundingBox Package Description org.bremersee.geojson.model -
-
Uses of BoundingBox in org.bremersee.geojson.model
Methods in org.bremersee.geojson.model that return BoundingBox Modifier and Type Method Description BoundingBox
Feature. getBbox()
Get bounding box.BoundingBox
FeatureCollection. getBbox()
Get bounding box.BoundingBox
Geometry. getBbox()
Get bounding box.Methods in org.bremersee.geojson.model with parameters of type BoundingBox Modifier and Type Method Description void
Feature. setBbox(BoundingBox bbox)
Sets bounding box.void
FeatureCollection. setBbox(BoundingBox bbox)
Sets bounding box.void
Geometry. setBbox(BoundingBox bbox)
Sets bbox.Constructors in org.bremersee.geojson.model with parameters of type BoundingBox Constructor Description Feature(String id, BoundingBox bbox, Geometry geometry, Object properties)
Instantiates a new feature.FeatureCollection(BoundingBox bbox, List<Feature> features)
Geometry(BoundingBox bbox)
Instantiates a new geometry.GeometryCollection(BoundingBox bbox, List<Geometry> geometries)
Instantiates a new geometry collection.LineString(BoundingBox bbox, List<Position> coordinates)
Instantiates a new line string.MultiLineString(BoundingBox bbox, List<List<Position>> coordinates)
Instantiates a new multi line string.MultiPoint(BoundingBox bbox, List<Position> coordinates)
Instantiates a new multi point.MultiPolygon(BoundingBox bbox, List<List<List<Position>>> coordinates)
Instantiates a new multi polygon.Point(BoundingBox bbox, Position coordinates)
Instantiates a new point.Polygon(BoundingBox bbox, List<List<Position>> coordinates)
Instantiates a new polygon.
-