addGroundOverlays method

void addGroundOverlays(
  1. Set<GroundOverlay> groundOverlaysToAdd
)

Adds new GroundOverlays to this controller.

Wraps the GroundOverlays in corresponding GroundOverlayControllers.

Implementation

void addGroundOverlays(Set<GroundOverlay> groundOverlaysToAdd) {
  groundOverlaysToAdd.forEach(_addGroundOverlay);
}