Open gemblev opened 1 year ago
Related to: https://github.com/Raruto/leaflet-elevation/issues/227 and https://github.com/Raruto/leaflet-elevation/issues/259
Though the specs allows you to omit the <ele>
tag: 👉 https://www.topografix.com/GPX/1/1/#type_wptType
<ele> [xsd](https://www.topografix.com/GPX/1/1/#ns_xsd):decimal </ele> [0..1]
I don't recommend doing so, in terms of software portability as well.. (generally speaking: undefined != 0
)
ele = 0
<!-- https://www.tyrando.fr/Elevation/entre_terre_et_mer.gpx -->
<trkpt lat="47.706262" lon="-3.172217"> <ele>0</ele> </trkpt>
<trkpt lat="47.70465" lon="-3.166588"> <ele>0</ele> </trkpt>
<trkpt lat="47.70467" lon="-3.164988"> <ele>0</ele> </trkpt>
<trkpt lat="47.7044741671216" lon="-3.164952993392945"> <ele>0</ele> </trkpt>
<trkpt lat="47.70440918487362" lon="-3.164727687835694"> <ele>0</ele> </trkpt>
<trkpt lat="47.70440918487362" lon="-3.1644701957702637"> <ele>0</ele> </trkpt>
<trkpt lat="47.704423625380194" lon="-3.1642878055572514"> <ele>0</ele> </trkpt>
<trkpt lat="47.704430845631954" lon="-3.1640625000000004"> <ele>0</ele> </trkpt>
<trkpt lat="47.704481387366386" lon="-3.1638801097869873"> <ele>0</ele> </trkpt>
<trkpt lat="47.70455358975911" lon="-3.163858652114868"> <ele>0</ele> </trkpt>
<trkpt lat="47.704697994244505" lon="-3.16381573677063"> <ele>0</ele> </trkpt>
<trkpt lat="47.704708" lon="-3.163813"> <ele>0</ele> </trkpt>
<trkpt lat="47.704804" lon="-3.164897"> <ele>0</ele> </trkpt>
ele = undefined
<!-- https://www.tyrando.fr/Elevation/entre_terre_et_mer_bug.gpx -->
<trkpt lat="47.706262" lon="-3.172217"> </trkpt>
<trkpt lat="47.70465" lon="-3.166588"> </trkpt>
<trkpt lat="47.70467" lon="-3.164988"> </trkpt>
<trkpt lat="47.7044741671216" lon="-3.164952993392945"> </trkpt>
<trkpt lat="47.70440918487362" lon="-3.164727687835694"> </trkpt>
<trkpt lat="47.70440918487362" lon="-3.1644701957702637"> </trkpt>
<trkpt lat="47.704423625380194" lon="-3.1642878055572514"> </trkpt>
<trkpt lat="47.704430845631954" lon="-3.1640625000000004"> </trkpt>
<trkpt lat="47.704481387366386" lon="-3.1638801097869873"> </trkpt>
<trkpt lat="47.70455358975911" lon="-3.163858652114868"> </trkpt>
<trkpt lat="47.704697994244505" lon="-3.16381573677063"> </trkpt>
<trkpt lat="47.704708" lon="-3.163813"> </trkpt>
<trkpt lat="47.704804" lon="-3.164897"> </trkpt>
Clever pull requests are welcome to try and handle these edge cases, I don't think I'll look into it.
👋 Raruto
Hello M. Raruto
Subject of the issue
Related to: https://github.com/Raruto/leaflet-elevation/issues/259
When I want to move the map with the mouse (drag & drop) with a gpx file which has some trpk tags without elevation, the map remains unchanged.
With firefox debug I have the following errors:
I just change the gpx file on your example.
Instead of file via-emilia.gpx, I put file _entre_terre_et_merbug.gpx.
Your environment