Use the library OSMDROID and MapView.
With this simple code I see the traces of PLT type (Oziexplorer).
It would be possible to see traces of the type GPX (and TRK) ?
As ?
Thanks in advance.
With this simple code I see the traces of PLT type (Oziexplorer).
B4X:
TextReader1.Initialize(File.OpenInput(File.DirRootExternal, NomeTraccia))
'--- 6 linee inutili
For i=1 To 6
Riga = TextReader1.ReadLine
Next
Do While Riga <> Null
Riga = TextReader1.ReadLine
If IsNullString(Riga) = False Then
ele = Regex.Split(",",Riga)
Lt=ele(0) : Lg= ele(1) : H= ele(3) * 0.3048
PathOverlay1.AddPoint (Lt,Lg)
End If
Loop
TextReader1.Close
As ?
Thanks in advance.