Android Question Custom popup info at marker click (Google Maps)

ThePuiu

Active Member
Licensed User
Longtime User
I need to display a different content for each marker separately. The information must contain an image and text.
How can this be done in B4X? (B4A and B4I)
 

Computersmith64

Well-Known Member
Licensed User
Longtime User
In B4A use:
B4X:
AddMarker3(Lat As Double, Lon As Double, Title As String, Bitmap as android.graphics.Bitmap) As Marker

- Colin.
 
Upvote 0

Computersmith64

Well-Known Member
Licensed User
Longtime User
If you're talking about adding an image to the InfoWindow (the window that appears when you tap on a marker), you can use the GoogleMapsExtras library to create an InfoWindowAdapter object that you can customize.

- Colin.
 
Last edited:
Upvote 0
Top