From fa3017574b830ee18cadc6bfe1cd9a465f48e555 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Thu, 5 Feb 2026 13:26:18 +0100 Subject: Better unknown feed handling, handle UVIGO shuttle --- src/frontend/app/routes/map.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/frontend/app/routes/map.tsx') diff --git a/src/frontend/app/routes/map.tsx b/src/frontend/app/routes/map.tsx index 07a805d..a8d745e 100644 --- a/src/frontend/app/routes/map.tsx +++ b/src/frontend/app/routes/map.tsx @@ -111,7 +111,10 @@ export default function StopMap() { }; const stopLayerFilter = useMemo(() => { - const filter: any[] = ["any"]; + const filter: any[] = [ + "any", + ["==", ["get", "transitKind"], "unknown"] + ]; if (showCitybusStops) { filter.push(["==", ["get", "transitKind"], "bus"]); } -- cgit v1.3