Android Question center marker

jchal

Active Member
Licensed User
Longtime User
i magages to set markers but i would like to center to the last marker , the code i am using is
what is the command to center it ?
B4X:
Sub MapFragment1_Ready
   gmap = MapFragment1.GetMap
   Dim m1 As Marker = gmap.AddMarker(10, 30, "test")
   m1.Snippet = "This is the snippet"
End Sub
 
Top