Я добавил геозоны в API Google Geofence, как в that example. времени от времени я хотел бы, чтобы стереть эти геозоны (либо по одному или всем togehter), независимо от их срока действия и т.д.Как стереть все геофенсионы, загруженные в API Google Geofence?
mGeofenceList.add(new Geofence.Builder()
// Set the request ID of the geofence. This is a string to identify this
// geofence.
.setRequestId(entry.getKey())
.setCircularRegion(
entry.getValue().latitude,
entry.getValue().longitude,
Constants.GEOFENCE_RADIUS_IN_METERS
)
.setExpirationDuration(Constants.GEOFENCE_EXPIRATION_IN_MILLISECONDS)
.setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER |
Geofence.GEOFENCE_TRANSITION_EXIT)
.build());
Как стереть эти геозоны подаваемых в API Google Геозонов самого ?