Hi
How can I call this Coordinates into google map using ACTION_VIEW,geoURI
64°8'37.561"N
21°55'34.777"W
I tray this sample to convert but it don't work
http://www.b4x.com/android/forum/threads/convert-gps-coordinates.26187/#post-151544
N1 = 64
N2 = 8
N3 = 37561
Regards
Sigster
How can I call this Coordinates into google map using ACTION_VIEW,geoURI
64°8'37.561"N
21°55'34.777"W
I tray this sample to convert but it don't work
http://www.b4x.com/android/forum/threads/convert-gps-coordinates.26187/#post-151544
N1 = 64
N2 = 8
N3 = 37561
B4X:
Dim N1_ut As String
N1_ut = N1.Text
Dim N2_ut As String
N2_ut = N2.Text / 60
Dim N3_ut As String
N3_ut = N3.Text / 3600
EditText2.Text = NumberFormat(N1_ut + N2_ut + N3_ut , 1,6)
Regards
Sigster