From f310e0f66f3768e408f6be8b61965cda6b350abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Sat, 11 Apr 2026 01:42:56 +0200 Subject: [PATCH] Lower POI minimum zoom from 12 to 10 Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/planner/app/lib/use-pois.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/planner/app/lib/use-pois.ts b/apps/planner/app/lib/use-pois.ts index b89bf94..5aacb56 100644 --- a/apps/planner/app/lib/use-pois.ts +++ b/apps/planner/app/lib/use-pois.ts @@ -3,7 +3,7 @@ import { queryPois, OverpassRateLimitError, type Poi, type BBox } from "./overpa import { getCached, setCached } from "./poi-cache.ts"; import { poiCategories } from "./poi-categories.ts"; -const MIN_ZOOM = 12; +const MIN_ZOOM = 10; const DEBOUNCE_MS = 800; const MIN_REQUEST_INTERVAL_MS = 2000; const BACKOFF_BASE_MS = 10000;