updateGeoJSONSourceFeatures abstract method

Future<void> updateGeoJSONSourceFeatures(
  1. String sourceId,
  2. String dataId,
  3. List<Feature<GeometryObject>> features
)

Updates existing features in a GeoJSON style source. Features are matched by id; provide unique ids on every feature to avoid map-loading-error.

Implementation

Future<void> updateGeoJSONSourceFeatures(
  String sourceId,
  String dataId,
  List<Feature> features,
);