Problem:
There is no native way to add, keep track of, or erase GeoFences that are added to a Google Map.Solution:
After a GeoFence is successfully added to the GeoFencing API, use its radius, latitude, and longitude to construct a Circle object. Add this Circle to a Stack of Circles, and also add it to the Google Map object. Pop the circle off the stack and remove it from the Map when removing the GeoFence.Explanation:
This assumes you have a GeoFencing API already set up and a Google Map set up.If you followed the Android GeoFence tutorial you should end up with something like this:
LocationServices.GeofencingApi.addGeofences( mGoogleApiClient, getGeofencingRequest(), getGeofencePendingIntent() ).setResultCallback(this);
In my code I call this every time a GeoFence is added. If that completes successfully, you can now add your GeoFence to the map. You'll need to know the fence's ID, latitude, longitude, and radius, so make sure to store those somewhere. Then, you're going to want to call your method that will do the work for making the circle with the map. I called mine createCircle() and I call it like this. Latlng is a LatLng type, and rad is a float.
createCircle(new CircleOptions() .center(latlng) .radius(rad) .strokeColor(Color.BLACK));
Here is the method that does the work:
private void createCircle(CircleOptions circleOptions){ if(mMap != null) { Circle newCircle = mMap.addCircle(circleOptions); if(newCircle != null) { circleStack.push(newCircle); } else { Log.d(TAG, "newCircle is null"); } } else { Log.d(TAG, "mMap is null"); } }
mMap is an instance variable of the Google Map that was created earlier in our code. Make sure you only call this after the Map is ready. Remember that Google Maps has the onMapReady() callback method, and this should be in your code already if you implemented OnMapReadyCallback.
circleStack is a stack that I instantiated like this:
private Stack<Circle> circleStack = new Stack<Circle>();
Ta-da! Now we have a circle on our map exactly where the GeoFence is!
And the Stack keeps track of the Circles for when we want to remove them.
Removing Circles and GeoFences:
The Android GeoFence tutorial only shows you how to remove all the geoFences for a pending intent. But there is another removeGeofences() method that takes a different argument and allows you to remove a list of fences based on their IDs. But how do you remove just a single GeoFence? I solved this by adding a button that would remove the most recently added GeoFence from the Geofencing Api and from the Google Map.
To remove the GeoFence from the API, just get the most recently added GeoFence from your ArrayList of GeoFences, which if you followed the Android GeoFence tutorial is called mGeofenceList. The most recently added fence will be at the highest index of your mGeofenceList. So get the fence from the highest index, and then get its ID and save it in a variable. You'll also want to remove from the mGeofenceList.
Then, add that ID to a List<String>. Yes, it seems a bit ridiculous to add a single entry to a List, but we need to use a List with the removeGeofences method. Now we are ready to call GeofencingApi.removeGeofences(), passing it your mGoogleApiClient (the same one from above) and your List of a single GeoFence ID to remove.
Finally, remove the Circle from the map. This is where the stack comes in. Pop the circle from the stack and store it in a Circle variable, and then call remove() on that Circle. Note that pop returns the object that it popped off the top of the stack.
Now your GeoFences are removed from the API, so they won't do anything if you enter, exit, or dwell within them. They are also removed from the map so no one will think a GeoFence exists where it doesn't.
public void removeGeofencesClick(View view) { if(mGeofenceList.size() > 0 && mGoogleApiClient.isConnected()) { int mGeofenceListLastIndex = mGeofenceList.size() - 1; Geofence fenceToRemove = mGeofenceList.get(mGeofenceListLastIndex); String geoFenceIdToRemove = fenceToRemove.getRequestId(); mGeofenceList.remove(mGeofenceListLastIndex); //This will only ever hold 1 fence at a time, but removeGeofences() //takes a List so that's why we make a List. List<String> geoFenceToRemove = new ArrayList<>(); geoFenceToRemove.add(geoFenceIdToRemove); LocationServices.GeofencingApi.removeGeofences(mGoogleApiClient, geoFenceToRemove).setResultCallback(this); //This removes the last added GeoFence from the Map, // but not the GeoFence collection. if(!circleStack.empty()){ Circle circleToRemove = (Circle)circleStack.pop(); circleToRemove.remove(); //remove it from the Map } } }