Changing A Marker's Text In Android Googlemaps
Is it possible to change the text inside a GoogleMap Marker after it's already been set? I'm using MarkerOptions to set the title and snippet originally like this: SupportMapFragm
Solution 1:
Is it possible to change the text inside a GoogleMap Marker after it's already been set?
Marker
has setTitle()
and setSnippet()
methods. You will need a Marker
object representing this marker, probably one that you held onto from the addMarker()
call.
Post a Comment for "Changing A Marker's Text In Android Googlemaps"