diff --git a/cli/static/driver-info.json b/cli/static/driver-info.json index 51ccce2..7de5094 100644 --- a/cli/static/driver-info.json +++ b/cli/static/driver-info.json @@ -63,6 +63,15 @@ "circle-radius": 8 } }, + { + "id": "stops_lrail", + "source": "stops-by-routes", + "minzoom": 0, + "filter": ["==", ["get", "timingStopType"], 0], + "paint": { + "circle-radius": 8 + } + }, { "id": "stops_subway", "source": "stops-by-routes", diff --git a/cli/static/routes-with-departures-only.json b/cli/static/routes-with-departures-only.json index 1783e1d..6143b02 100644 --- a/cli/static/routes-with-departures-only.json +++ b/cli/static/routes-with-departures-only.json @@ -24,6 +24,18 @@ "id": "route_tram_inner", "filter": ["!=", ["boolean", ["get", "hasRegularDayDepartures"]], false] }, + { + "id": "route_lrail_case", + "filter": ["!=", ["boolean", ["get", "hasRegularDayDepartures"]], false] + }, + { + "id": "route_lrail", + "filter": ["!=", ["boolean", ["get", "hasRegularDayDepartures"]], false] + }, + { + "id": "route_lrail_inner", + "filter": ["!=", ["boolean", ["get", "hasRegularDayDepartures"]], false] + }, { "id": "route_trunk_case", "filter": ["!=", ["boolean", ["get", "hasRegularDayDepartures"]], false] diff --git a/cli/static/stops-with-route-info.json b/cli/static/stops-with-route-info.json index 20685a1..7398f23 100644 --- a/cli/static/stops-with-route-info.json +++ b/cli/static/stops-with-route-info.json @@ -28,6 +28,10 @@ "id": "stops_tram", "source": "stops-by-routes" }, + { + "id": "stops_lrail", + "source": "stops-by-routes" + }, { "id": "stops_subway", "source": "stops-by-routes" diff --git a/index.html b/index.html index 34129b5..0234599 100644 --- a/index.html +++ b/index.html @@ -3,8 +3,8 @@