Android Question how to add a label in gmap

customnames

Member
Licensed User
Longtime User
I am trying to add a label or button to a gmap like addmarker
how would someone go about doing this

I have added a button to the layout but it won't show when run
Thanks
 

eurojam

Well-Known Member
Licensed User
Longtime User
like Erel said, it is not possible to use buttons and so on in the InfoWindowAdapter, even if you load an layout in it. The only way is to listen for marker click events with OnMarkerClickListener and display your own complete view directly, which will be some work...
Alternativly you can use the OnInfoWindowClickListener to raise an event when the user clicks the google maps InfoWindow.
 
Upvote 0

customnames

Member
Licensed User
Longtime User
I have seen other apps which have a button and showing data in a label
app like hailo, how would I go about doing it as just clicking randomly on the map would not convey
to the user what was required ?
 
Upvote 0
Top