'How to know which Marker was clicked on Google Maps v2 for Android?
I am making an application with a Google Maps on it, for Android. I have plenty of Markers on my screen and I am preparing customizable balloon for each marker when they are clicked. This means, I have information which is different according to the marker which was clicked.
I set up the contents of the View of the marker with setInfoWindowAdapter and then I override the method getInfoContents.
The problem is: This method is the general implementation of the contents of the Info Window, but each marker shall show its own information. So, as far as I understand, I have to somehow detect on getInfoContents(Marker marker) which of the markers have been clicked, in order to load from my data structures the necessary info to present on the info window. The question is: How do I identify what entity the clicked Marker 'marker' represents? I mean, having just the object Marker on getInfoContents which was triggered to show the info window, how can I detect which is the proper information to display? I though about comparing the string Title by using marker.getTitle(), but this obliges me to display a Title on the info window, which I do not want. There's also a marker.getId(), but such ID is generated by the API and I can't control it
Any ideas?
Solution 1:[1]
In reply to:
The question is: How do I identify what entity the clicked Marker 'marker' represents? [...] There's also a marker.getId(), but such ID is generated by the API and I can't control it
You can control it. The marker is returned by addMarker(), so you can get its ID and store it. Here's the code:
Map <String, Integer> markers = new HashMap<String, Integer>();
...
MarkerOptions mo = new MarkerOptions()
.icon(BitmapDescriptorFactory.fromResource(R.drawable.my_marker))
.position(new LatLng(mLat, mLon))
.flat(true)
.snippet("Click here for details")
.rotation(0)
.title(title);
When you add the marker to the map, store its ID on the container
MyClass myObject = new MyClass(lat, lon); // The class that you are rendering on the map with Markers, for example "Monument"
Marker mkr = map.addMarker(mo);
markers.put(mkr.getId(), myObject.getId());
Then when the marker is clicked, you can recover the id of "myObject" like this
map.setOnInfoWindowClickListener(new OnInfoWindowClickListener() {
public void onInfoWindowClick(Marker marker) {
int id = markers.get(marker.getId());
// Now id contains which Monument (or your preferred class) was clicked
}
});
Solution 2:[2]
There is a better option, and this is what google suggests:
Tag : An
Object
associated with the marker. For example, theObject
can contain data about what the marker represents. This is easier than storing a separateMap<Marker, Object>
. As another example, you can associate aString
ID corresponding to the ID from a data set. Google Maps Android API neither reads nor writes this property.
So you can do something like this:
for (ListItem it: mList) {
Marker mk = mMap.addMarker(new MarkerOptions().position(it.getLatLng()).title(it.getName()).snippet(it.getAddress()));
mk.setTag(it.getID());
}
mMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {
@Override
public boolean onMarkerClick(Marker marker) {
Integer id = (Integer) marker.getTag();
return false;
}
});
Solution 3:[3]
You are not obligated to show title when you have it set, so you can use that and as long as you return a View
from getInfoContents
and not setText
on any subview of that returned View
with title value.
Depending on how and if you already keep references to all markers, there are alternatives, e.g. if you had List<Marker> policeMarkers
and List<Marker> badGuysMarkers
you can use a conditional if (policeMarkers.contains(marker)) { ... } else { ... }
.
You can also keep a Map<Marker, YourMarkerRelatedDataModel> allMarkers
and do YourMarkerRelatedDataModel model = allMarkers.get(marker);
and use that value to differentiate.
Finally you can use Android Maps Extensions, which adds functions like Marker.setData(Object)
and Object Marker.getData()
to keep your model close to your markers and not create things like Map<Marker, Model>
.
Solution 4:[4]
try this code:
@Override
public void onInfoWindowClick(final Marker marker)
{
// TODO Auto-generated method stub
if (marker.getTitle().equalsIgnoreCase("Start")) {
Toast.makeText(showMaps.this, "You have click on start -->",
Toast.LENGTH_LONG).show();
Log.e("marker.getPosition()-->", "" + marker.getPosition());
}
}
Solution 5:[5]
mMap.setOnMarkerClickListener{
Log.d(TAG , "easy")
return@setOnMarkerClickListener true
}
Solution 6:[6]
map.setOnInfoWindowClickListener(new GoogleMap.OnInfoWindowClickListener() {
public void onInfoWindowClick(Marker marker) {
double lat=marker.getPosition().latitude;
double lng=marker.getPosition().longitude;
}
});
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | ShahiM |
Solution 3 | MaciejGórski |
Solution 4 | Dhaval Parmar |
Solution 5 | Leonardo Alves Machado |
Solution 6 | Rohith S |