Maps
Save and organize locations with map visualization.
Features
- Locations — Save places with name, address, coordinates, and notes
- Map view — Interactive map display
- Categories — Organize locations by category
- Export — Auto-synced to
~/Dokumente/Karten/as Markdown + GeoJSON - Aurora integration — Aurora can access location data
Data Export
The app-sync system exports map data in two formats:
~/Dokumente/Karten/Orte.md— Human-readable location list~/Dokumente/Karten/orte.geojson— Machine-readable GeoJSON for GIS tools
v3.12 Updates v3.12
Input Validation
The add_place API endpoint now validates all input parameters:
- Name — Must be a non-empty string
- Latitude — Must be a number between -90 and 90
- Longitude — Must be a number between -180 and 180
- Error response — Returns a descriptive JSON error if validation fails
Delete Validation
The delete_place endpoint now checks rowCount() after the DELETE query to verify the place actually existed and belonged to the current user. Returns a 404 error if no matching place was found.