From 0c35f3ca95595905bf4638c39f124f275c00c36f Mon Sep 17 00:00:00 2001
From: Mateusz Konieczny <matkoniecz@gmail.com>
Date: Sun, 9 Feb 2025 09:21:58 +0100
Subject: [PATCH] zoom higher when linking ATP

to be more clear what was linked
---
 shared.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shared.py b/shared.py
index 7d429ce..c517bfd 100644
--- a/shared.py
+++ b/shared.py
@@ -19,7 +19,7 @@ def link_to_point_in_osm(lat, lon, zoom_level=19):
     # zoom_level must be an integer
     return 'https://www.openstreetmap.org/?mlat=' + str(lat) + "&mlon=" + str(lon) + "#map=" + str(zoom_level) + "/" + str(lat) + '/' + str(lon)
 
-def link_to_point_in_atp(lat, lon, zoom_level=19):
+def link_to_point_in_atp(lat, lon, zoom_level=22):
     # alltheplaces accepts zoom levels such as 20.44
     return 'https://www.alltheplaces.xyz/map/#' + str(zoom_level) + '/' +str(lat) + '/' + str(lon)