Hi,
I have a GPS location code as shown. This show the location in a Degree, Minutes, seconds form. How do I do it so that it can be shown in a degree form?
Thanks
B4X:
Sub GPS_LocationChanged (Location1 As Location)
GLabel1.Text = Location1.ConvertToMinutes(Location1.Latitude)
GLabel2.Text = Location1.ConvertToMinutes(Location1.Longitude)
End Sub
I have a GPS location code as shown. This show the location in a Degree, Minutes, seconds form. How do I do it so that it can be shown in a degree form?
Thanks