Include waypoint note in GPX export and extractWaypoints type

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-05-18 07:38:55 +02:00
parent 845301f0ae
commit aef67aab7a
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9
2 changed files with 2 additions and 1 deletions

View file

@ -25,6 +25,7 @@ function getWaypoints(yjs: YjsState) {
lon: yMap.get("lon") as number,
name: yMap.get("name") as string | undefined,
isDayBreak: yMap.get("overnight") === true ? true : undefined,
note: yMap.get("note") as string | undefined,
osmId: yMap.get("osmId") as number | undefined,
poiTags: yMap.get("poiTags") as WaypointPoiTags | undefined,
}));