B btbb Member Licensed User Longtime User May 4, 2013 #1 Hi, Have been searching for some time now and can't find how to change markers position in google maps without using the webview version. What i find in the documention tells me that it is possible with googlemaps.addmarker.position to change the position. So can someone give me an example code for this? /btbb
Hi, Have been searching for some time now and can't find how to change markers position in google maps without using the webview version. What i find in the documention tells me that it is possible with googlemaps.addmarker.position to change the position. So can someone give me an example code for this? /btbb
Erel B4X founder Staff member Licensed User Longtime User May 5, 2013 #2 B4X: 'marker1 is a global variable of type Marker marker1 = gmap.AddMarker(36, 15, "Hello!!!") Later in your code you can change its position: B4X: Dim ll As LatLng ll.Initialize(10, 20) marker1.Position = ll Upvote 0
B4X: 'marker1 is a global variable of type Marker marker1 = gmap.AddMarker(36, 15, "Hello!!!") Later in your code you can change its position: B4X: Dim ll As LatLng ll.Initialize(10, 20) marker1.Position = ll