valentino s Active Member Licensed User Longtime User Dec 2, 2015 #1 With a snippet I can add plain text. B4X: Dim m1 = gmap.AddMarker2(45, 8, "Opened by default", Colors.Red) As Marker m1.Snippet = "Marker second "&CRLF&"<b>bold</b> plain" For b4j I've found this example that let me add an html infowindow: https://www.b4x.com/android/forum/threads/jgooglemaps-library.56744/#post-365335 For android, here is possible to use GoogleMapsExtras InfowindowAdapter Is there something similar on ios ? I didn't find, sorry. v.
With a snippet I can add plain text. B4X: Dim m1 = gmap.AddMarker2(45, 8, "Opened by default", Colors.Red) As Marker m1.Snippet = "Marker second "&CRLF&"<b>bold</b> plain" For b4j I've found this example that let me add an html infowindow: https://www.b4x.com/android/forum/threads/jgooglemaps-library.56744/#post-365335 For android, here is possible to use GoogleMapsExtras InfowindowAdapter Is there something similar on ios ? I didn't find, sorry. v.
Erel B4X founder Staff member Licensed User Longtime User Dec 2, 2015 #2 I don't think that it is possible. Upvote 0
valentino s Active Member Licensed User Longtime User Dec 2, 2015 #3 Ok. So the most simple thing is to create a label object near the map, where I can put the details of the marker clicked, based on the tag property. Thank you. Upvote 0
Ok. So the most simple thing is to create a label object near the map, where I can put the details of the marker clicked, based on the tag property. Thank you.