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