Replies: 2 comments 4 replies
-
Just showing name or description for a point is relatively little work (still an hour or two with testing), but the more we get into a niche of a niche (of a niche), the less I'm inclined to spend a lot of time. PR can be done of course. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Acually MapLibre supports setting GeoJson from string. So when you convert the GPX to GeoJson, all that needs to be implemented is the display style. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Usecase
I use the app gpslogger (F-Droid) to collect some simple data in car, or on my bicycle. Gpslogger has a configurable annotation view with 9 buttons, where the meaning can be edited. For example: "Start Living Zone", "sign 50", "building - house".
When a button is presssed, the value of the button is written to a gpx file. The gpx file contains waypoints (wpt) and the track (trk). The position of the wpt are used in the track. Only the wpt contain the information of the pressed button.
Example
gpslogger_test-01.gpx.txt
Here: "Zone 30 Start Ende" is the value in tag "name".
<wpt lat="48.8904072" lon="8.235780083333333"><ele>182.867</ele><time>2024-08-02T08:59:15.000Z</time><name>Zone 30 Start Ende</name><src>gps</src></wpt>
<trkpt lat="48.8904072" lon="8.235780083333333"><ele>182.867</ele><time>2024-08-02T08:59:15.000Z</time><extensions><gpxtpx:TrackPointExtension><gpxtpx:bearing>197.399</gpxtpx:bearing><gpxtpx:speed>1.0730728</gpxtpx:speed></gpxtpx:TrackPointExtension></extensions><geoidheight>0</geoidheight><src>gps</src><sat>9</sat><hdop>1.227</hdop><vdop>1.934</vdop><pdop>2.291</pdop></trkpt>
Current behavior in SCEE
The track is imported. The waypoint information is not available.
My workaround
I (must) use ID-Editor, just pull the gpx in the map and I can see track, waypoints and information of the waypoints. Works fine, but requires for me a lot more motivation.
My idea for discussion
Hmm?
Beta Was this translation helpful? Give feedback.
All reactions