From e459a86edb790222ac6f88c85598966e198baeac Mon Sep 17 00:00:00 2001 From: patrickzerhusen Date: Sun, 19 Apr 2026 16:36:37 +0200 Subject: [PATCH] geocoder can search outside map boundaries, prioritizes results inside map boundaries --- public/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/app.js b/public/js/app.js index 3f97e1a..6273066 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -124,7 +124,7 @@ L.Control.geocoder({ countrycodes: 'de', viewbox: (MUNICIPALITY.center[1] - 0.3) + ',' + (MUNICIPALITY.center[0] - 0.2) + ',' + (MUNICIPALITY.center[1] + 0.3) + ',' + (MUNICIPALITY.center[0] + 0.2), - bounded: 1 + bounded: 0, } }) }).addTo(map);