envelope function
Returns a rectangular Polygon (envelope) that fully contains the given GeoJSON object.
Implementation
Feature<Polygon> envelope(GeoJSONObject geojson) {
return bboxPolygon(bbox(geojson));
}
Returns a rectangular Polygon (envelope) that fully contains the given GeoJSON object.
Feature<Polygon> envelope(GeoJSONObject geojson) {
return bboxPolygon(bbox(geojson));
}