diff options
Diffstat (limited to 'src/frontend/app/routes/map.tsx')
| -rw-r--r-- | src/frontend/app/routes/map.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
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"]); } |
