How to obtain an address from latitude and longitude

ciginfo

Well-Known Member
Licensed User
Longtime User
Hello,
Y try to obtain an address from longitude and latitude with Geocode. If I try the demo "Geocoder v2 00" I cannot obtain an address, it returns always "No Address matched the Latitude and Longitude".
 

Beja

Expert
Licensed User
Longtime User
Hi Klaus,
This is the editing I made:
B4X:
Sub GPS_LocationChanged (Location1 As Location)
    'lblLat.Text = "Lat = " & Location1.ConvertToMinutes(Location1.Latitude)
    'lblLon.Text = "Lon = " & Location1.ConvertToMinutes(Location1.Longitude)
   
        lblLat.Text = "Lat = " & Location1.Latitude
        lblLon.Text = "Lon = " & Location1.Longitude
        lblSpeed.Text = "Speed = " & Location1.Speed
End Sub
 
Upvote 0
Top