In my app I have some objects that have their location displayed on the map using markers. The problem is that the only way I've found to handle marker clicks is
googleMap.setOnMarkerClickListener(new ... {
@Override
public void onMarkerClick(Marker marker) {
// how to get the object associated to marker???
}
})
In other words I get the Marker object while the only interface that I have allows me to set just MarkerOptions.
Any way to associate Marker with an object?