We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
calculateBoundingBox()
GeoJsonObject
Add a calculateBoundingBox() method to GeoJsonObject, which would calculate (and reset) the object's bbox based on the instance's other attributes.
bbox
abstract
Feature
this.getGeometry().calculateBoundingBox()
FeatureCollection
Geometry
LineString
MultiPoint
MultiLineString
MultiPolygon
Polygon
Point
The order of the four double values must correspond to the order assumed in the definition of the bbox member of GeoJsonObject (whatever that is).
double
Consider calling this method automatically in any method that alters the shape of the object, such that the bounding box is updated in real time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add a
calculateBoundingBox()
method toGeoJsonObject
, which would calculate (and reset) the object'sbbox
based on the instance's other attributes.GeoJsonObject
abstract
to force implementation classes to provide it.Feature
this.getGeometry().calculateBoundingBox()
.FeatureCollection
Feature
in the collection, then draw a box around all results.Geometry
abstract
.LineString
MultiPoint
's implementation?MultiLineString
MultiPoint
MultiPolygon
Polygon
, then draw a box around all of those boxes.Point
Polygon
The order of the four
double
values must correspond to the order assumed in the definition of thebbox
member ofGeoJsonObject
(whatever that is).Consider calling this method automatically in any method that alters the shape of the object, such that the bounding box is updated in real time.
The text was updated successfully, but these errors were encountered: