From 60211594e045b56dd8cebd0a6b47caa827a3dc2a Mon Sep 17 00:00:00 2001 From: Kumi Date: Sat, 13 Jul 2024 15:15:33 +0200 Subject: [PATCH] feat: add Overpass service with custom icon Added the Overpass service to the services configuration with a detailed description, status, link, and associated map-trifold icon. This enriches the application's API offerings, providing users access to OpenStreetMap data querying capabilities. --- assets/dist/icons/map-trifold.svg | 1 + data/services.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 assets/dist/icons/map-trifold.svg diff --git a/assets/dist/icons/map-trifold.svg b/assets/dist/icons/map-trifold.svg new file mode 100644 index 0000000..9f20814 --- /dev/null +++ b/assets/dist/icons/map-trifold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/services.json b/data/services.json index dee599d..85b4e45 100644 --- a/data/services.json +++ b/data/services.json @@ -451,6 +451,22 @@ "icon": "images", "exclude_from_index": false, "exclude_from_simple": false + }, + { + "name": "Overpass", + "url": "https://overpass.private.coffee", + "short_description": "Overpass is an API for OpenStreetMap.", + "long_description": "Overpass is an API for OpenStreetMap. You can use it to query OpenStreetMap data, and to get the results in various formats.", + "status": "OK", + "links": [ + { + "name": "Go to Overpass", + "url": "https://overpass.private.coffee" + } + ], + "icon": "map-trifold", + "exclude_from_index": false, + "exclude_from_simple": false } ] } \ No newline at end of file