Wish [jGoogleMap] Marker.Title readable

jmon

Well-Known Member
Licensed User
Longtime User
Hello,

I would like to get the title of the selected marker in this routine:
B4X:
Private Sub gmap_MarkerClick (SelectedMarker As Marker)
    Log(SelectedMarker.Title)
End Sub
But the Title method is write only.

Would it be possible to make it readable?

Thank you
Jmon.
 

jmon

Well-Known Member
Licensed User
Longtime User
It is also write-only in the native library. You can use a Map collection to map between the markers and any other required information.
Thank you, this is what I'm going to do.

Thanks again
 
Top