bbox property

List<num> bbox

Get the polygon's bounding box, the bounding box is in GeoJson format

Implementation

List<num> get bbox => _bbox;
void bbox=(List<num> box)

Update the polygon's bounding box, the bounding box must be in GeoJson format

Implementation

set bbox(List<num> box) {
  _bbox = box;
  _clearCache();
}