Skip to content

Commit

Permalink
Move cliffs layer right after icesheet-outlines
Browse files Browse the repository at this point in the history
  • Loading branch information
pitdicker committed Sep 9, 2021
1 parent 14cb9f6 commit 0786b08
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions project.mml
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,20 @@ Layer:
) AS icesheet_outlines
properties:
minzoom: 5
- id: cliffs
geometry: linestring
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, "natural", man_made
FROM planet_osm_line
WHERE "natural" IN ('arete', 'cliff', 'ridge') OR man_made = 'embankment'
) AS cliffs
properties:
cache-features: true
minzoom: 13
- id: marinas-area
geometry: polygon
<<: *extents
Expand Down Expand Up @@ -505,20 +519,6 @@ Layer:
) AS line_barriers
properties:
minzoom: 15
- id: cliffs
geometry: linestring
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, "natural", man_made
FROM planet_osm_line
WHERE "natural" IN ('arete', 'cliff', 'ridge') OR man_made = 'embankment'
) AS cliffs
properties:
cache-features: true
minzoom: 13
- id: ferry-routes
geometry: linestring
<<: *extents
Expand Down

0 comments on commit 0786b08

Please sign in to comment.