ciginfo Well-Known Member Licensed User Longtime User May 8, 2013 #1 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".
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 Dec 6, 2013 #21 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
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