From 8864ee223be492cd8afbd89790fddcbce0895989 Mon Sep 17 00:00:00 2001 From: Kenneth Brewer Date: Tue, 28 Apr 2026 01:21:06 -0400 Subject: [PATCH] docs: add map markers to API reference (#783) Co-authored-by: Kenneth Brewer --- admin/docs/api-reference.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/admin/docs/api-reference.md b/admin/docs/api-reference.md index 5cf126f..928b1e3 100644 --- a/admin/docs/api-reference.md +++ b/admin/docs/api-reference.md @@ -148,6 +148,15 @@ ZIM files provide offline Wikipedia, books, and other content via Kiwix. | POST | `/api/maps/download-collection` | Download an entire collection by slug (async) | | DELETE | `/api/maps/:filename` | Delete a local map file | +### Map Markers + +| Method | Path | Description | +|--------|------|-------------| +| GET | `/api/maps/markers` | List map markers | +| POST | `/api/maps/markers` | Add map marker (body: {"name": "Test Marker", "longitude": 0.0, "latitude": 0.0, "color": "yellow", "marker_type": "pin"} ) | +| PATCH | `/api/maps/markers/{id}` | Update a map marker (body: {"name": "Test Marker", "longitude": 0.0, "latitude": 0.0, "color": "yellow", "marker_type": "pin"} ) fields that don't change can be omitted| +| DELETE | `/api/maps/markers/{id}` | Delete a map marker | + --- ## Downloads