Skip to content

Commit

Permalink
Add services in gen0 and gen1 - tiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Rub21 committed Apr 11, 2024
1 parent 047519d commit 5526573
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions images/tiler-server/config/providers/transport_lines.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ SELECT
FROM
osm_transport_lines_gen0
WHERE
type IN ('motorway', 'trunk', 'motorway_link', 'trunk_link', 'primary')
type IN ('motorway', 'trunk', 'motorway_link', 'trunk_link', 'primary', 'service')
AND tunnel = 0
AND bridge = 0
AND geometry && !BBOX!
Expand Down Expand Up @@ -100,7 +100,13 @@ SELECT
FROM
osm_transport_lines_gen1
WHERE
type IN ('motorway', 'trunk', 'primary', 'primary_link', 'secondary', 'motorway_link', 'trunk_link', 'rail', 'subway', 'light_rail', 'tram', 'narrow_gauge', 'monorail', 'preserved', 'miniature', 'funicular', 'taxiway', 'runway', 'proposed', 'construction', 'disused', 'abandoned', 'razed', 'ferry')
type IN (
'motorway', 'trunk', 'primary', 'primary_link', 'secondary',
'motorway_link', 'trunk_link', 'rail', 'subway', 'light_rail',
'tram', 'narrow_gauge', 'monorail', 'preserved', 'miniature',
'funicular', 'taxiway', 'runway', 'proposed', 'construction',
'disused', 'abandoned', 'razed', 'ferry', 'service'
)
AND geometry && !BBOX!
"""

Expand Down

0 comments on commit 5526573

Please sign in to comment.