removeTileOverlays method

void removeTileOverlays(
  1. Set<TileOverlayId> tileOverlayIds
)

Removes the tile overlays associated with the given TileOverlayIds.

Implementation

void removeTileOverlays(Set<TileOverlayId> tileOverlayIds) {
  tileOverlayIds.forEach(_removeTileOverlay);
}