Chris Guanzon Active Member Licensed User Longtime User Sep 3, 2022 #1 Good day, everyone! How can I get the longitude and latitude of mapfragment using the button? I have an image over the mapfragment. I want to get the position of this image to get the long/lat in the mapfragment by pressing the button. Attachments testtet.jpg 40.1 KB · Views: 190
Good day, everyone! How can I get the longitude and latitude of mapfragment using the button? I have an image over the mapfragment. I want to get the position of this image to get the long/lat in the mapfragment by pressing the button.
TILogistic Expert Licensed User Longtime User Sep 3, 2022 #2 get map points Private Sub MapFragment1_Click (Point As LatLng) Click to expand... get marker points Private Sub MapFragment1_MarkerClick(SelectedMarker As Marker) As Boolean Click to expand... and if you know the marker Log($"Marker: ${MarkerMyLocationImage.Position.Latitude},${MarkerMyLocationImage.Position.Longitude}"$) Click to expand... Last edited: Sep 3, 2022 Upvote 0
get map points Private Sub MapFragment1_Click (Point As LatLng) Click to expand... get marker points Private Sub MapFragment1_MarkerClick(SelectedMarker As Marker) As Boolean Click to expand... and if you know the marker Log($"Marker: ${MarkerMyLocationImage.Position.Latitude},${MarkerMyLocationImage.Position.Longitude}"$) Click to expand...