com.google.android.gms.maps.model.GroundOverlay

Here are the examples of the java api class com.google.android.gms.maps.model.GroundOverlay taken from open source projects.

1. KmlRenderer#removeGroundOverlays()

Project: wigle-wifi-wardriving
File: KmlRenderer.java
/**
     * Removes all ground overlays in the given hashmap
     *
     * @param groundOverlays hashmap of ground overlays to remove
     */
private void removeGroundOverlays(HashMap<KmlGroundOverlay, GroundOverlay> groundOverlays) {
    for (GroundOverlay groundOverlay : groundOverlays.values()) {
        groundOverlay.remove();
    }
}

2. KmlRenderer#removeGroundOverlays()

Project: android-maps-utils
File: KmlRenderer.java
/**
     * Removes all ground overlays in the given hashmap
     *
     * @param groundOverlays hashmap of ground overlays to remove
     */
private void removeGroundOverlays(HashMap<KmlGroundOverlay, GroundOverlay> groundOverlays) {
    for (GroundOverlay groundOverlay : groundOverlays.values()) {
        groundOverlay.remove();
    }
}