removeGroundOverlays method

void removeGroundOverlays(
  1. Set<GroundOverlayId> groundOverlayIds
)

Removes the ground overlays associated with the given GroundOverlayIds.

Implementation

void removeGroundOverlays(Set<GroundOverlayId> groundOverlayIds) {
  groundOverlayIds.forEach(_removeGroundOverlay);
}