I am trying to do an activity that show the infowindow of the google map marker in which you are.
I think initially to use geofences in each marker, and when you enter in it the infowindow should be open. However, I found what I think was a easier way to accomplish this: LocationManager.addProximityAlert. I add as much ProximityAlert as markers, the problem is that ProximityAlert method launch an Intent, and in another activity I can't show the marker's infowindow from the original activity, or at least I can`t found how. So my questions are:
- Can I open google map marker's infowindow with LocationManager.addProximityAlert? How?
- Should I use Geofence and new GoogleApi client instead?