onAddAll method

void onAddAll(
  1. Iterable<GeoJSONFeature?> features
)

The callback function called when features are added.

Implementation

void onAddAll(Iterable<GeoJSONFeature?> features) {
  _bbox = _getBbox(features as List<GeoJSONFeature?>);
}