Skip to content

Commit

Permalink
add method replaceGeofenceIsochrone without idstore in param
Browse files Browse the repository at this point in the history
  • Loading branch information
Llumbroso committed Mar 4, 2022
1 parent a0e3508 commit cb62e2b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,10 @@ public void removeGeofence(String id) {
}
public void removeGeofence() { locationManager.removeGeofences();}

public void replaceGeofenceIsochrone(String oldId, String newId, LatLng latLng, float radius){
locationManager.replaceGeofenceIsochrone(oldId, newId, latLng, radius, "");
}

public void replaceGeofenceIsochrone(String oldId, String newId, LatLng latLng, float radius, String idStore){
locationManager.replaceGeofenceIsochrone(oldId, newId, latLng, radius, idStore);
}
Expand Down

0 comments on commit cb62e2b

Please sign in to comment.