Android Question how can i update a marker position on GoogleMaps API [ Official API ]

Waldemar Lima

Well-Known Member
Licensed User
hi everyone !
i would like know how can i update a marker position of GoogleMaps ?

B4X:
Markers(i).Position = -20,20 ' like this
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
You need to remember the marker you defined.
You can store it in a list, map, whatever
B4X:
    Dim m1 As Marker = gmap.AddMarker(53.664565,9.781609, "test")

Use the Object m1 to set the new Position...
 
Upvote 0
Top