From f6097a2d60fb1220ab0ffe0a46d576f4ad1f050b Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Sun, 27 Apr 2025 17:42:51 +0200 Subject: [PATCH] Open in Apple Maps or Google Maps This patch provides the additional option to open a location in Google maps as an alternative to Apple Maps. --- .../src/routes/adventures/[id]/+page.svelte | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/frontend/src/routes/adventures/[id]/+page.svelte b/frontend/src/routes/adventures/[id]/+page.svelte index f11f450..b32a19e 100644 --- a/frontend/src/routes/adventures/[id]/+page.svelte +++ b/frontend/src/routes/adventures/[id]/+page.svelte @@ -458,12 +458,21 @@ {/if} {#if adventure.longitude && adventure.latitude} - {$t('adventures.open_in_maps')} +
+ {$t('adventures.open_in_maps')}: + Apple + Google +
{/if}