bbox property
Get the polygon's bounding box, the bounding box is in GeoJson format
Implementation
List<num> get bbox => _bbox;
Update the polygon's bounding box, the bounding box must be in GeoJson format
Implementation
set bbox(List<num> box) {
_bbox = box;
_clearCache();
}