Lower POI minimum zoom from 12 to 10

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-04-11 01:42:56 +02:00
parent b156093167
commit f310e0f66f
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9

View file

@ -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;