ThePuiu Active Member Licensed User Longtime User Jan 13, 2020 #1 Is it possible to determine the position of a marker by name or snippet to move the camera on it?
gravel Member Licensed User Longtime User Jan 14, 2020 #2 I don't know what exactly it is you want to do, but you could add your MarkerOptions to a list and identify the relevant marker by referencing Snippet/Name from the list and use the MarkerOptions.Position. Upvote 0
I don't know what exactly it is you want to do, but you could add your MarkerOptions to a list and identify the relevant marker by referencing Snippet/Name from the list and use the MarkerOptions.Position.
Erel B4X founder Staff member Licensed User Longtime User Jan 15, 2020 #3 gravel said: don't know what exactly it is you want to do, but you could add your MarkerOptions to a list Click to expand... A Map is even better for this. B4X: Markers.Put(NewMarker.Title, NewMarker) ... Dim m As Marker = Markers.Get("title 1") Upvote 0
gravel said: don't know what exactly it is you want to do, but you could add your MarkerOptions to a list Click to expand... A Map is even better for this. B4X: Markers.Put(NewMarker.Title, NewMarker) ... Dim m As Marker = Markers.Get("title 1")