From 5fd5107e8d38b0332edf0a1ab8e86741c4e0bdba Mon Sep 17 00:00:00 2001 From: btwhite92 Date: Thu, 22 Aug 2019 04:27:37 -0700 Subject: [PATCH] Drop 'highway=steps' from z=13 (#3825) * Drop 'highway=steps' from z=13 * Missed line 649 in previous commit --- roads.mss | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/roads.mss b/roads.mss index c9d8dcaa63..8b339fcc72 100644 --- a/roads.mss +++ b/roads.mss @@ -118,7 +118,6 @@ @track-width-z13: 0.5; @track-grade1-width-z13: 0.5; @track-grade2-width-z13: 0.5; -@steps-width-z13: 0.7; @secondary-width-z14: 5; @tertiary-width-z14: 5; @@ -127,6 +126,7 @@ @pedestrian-width-z14: 3; @road-width-z14: 2; @service-width-z14: 2; +@steps-width-z14: 0.7; @motorway-width-z15: 10; @motorway-link-width-z15: 7.8; @@ -639,16 +639,16 @@ #bridges { [zoom >= 14][access != 'no'], [zoom >= 15] { - line-width: @steps-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + line-width: @steps-width-z14 + 2 * (@paths-background-width + @paths-bridge-casing-width); [zoom >= 15] { line-width: @steps-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); } line-color: @bridge-casing; line-join: round; } } #tunnels { - [zoom >= 13][access != 'no'], + [zoom >= 14][access != 'no'], [zoom >= 15] { - line-width: @steps-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + line-width: @steps-width-z14 + 2 * (@paths-background-width + @paths-tunnel-casing-width); [zoom >= 15] { line-width: @steps-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); } line-color: @tunnel-casing; line-dasharray: 4,2; @@ -945,19 +945,19 @@ #bridges { [zoom >= 14][access != 'no'], [zoom >= 15] { - line-width: @steps-width-z13 + 2 * @paths-background-width; + line-width: @steps-width-z14 + 2 * @paths-background-width; [zoom >= 15] { line-width: @steps-width-z15 + 2 * @paths-background-width; } line-color: @steps-casing; line-join: round; } } #tunnels { - [zoom >= 13][access != 'no'], + [zoom >= 14][access != 'no'], [zoom >= 15] { line-color: @steps-casing; line-cap: round; line-join: round; - line-width: @steps-width-z13 + 2 * @paths-background-width; + line-width: @steps-width-z14 + 2 * @paths-background-width; [zoom >= 15] { line-width: @steps-width-z15 + 2 * @paths-background-width; } } } @@ -1808,7 +1808,7 @@ tertiary is rendered from z10 and is not included in osm_planet_roads. */ } [feature = 'highway_steps'] { - [zoom >= 13][access != 'no'], + [zoom >= 14][access != 'no'], [zoom >= 15] { #roads-fill[zoom >= 15] { background/line-color: @steps-casing; @@ -1820,7 +1820,7 @@ tertiary is rendered from z10 and is not included in osm_planet_roads. */ line/line-color: @steps-fill; [access = 'no'] { line/line-color: @steps-fill-noaccess; } line/line-dasharray: 2,1; - line/line-width: @steps-width-z13; + line/line-width: @steps-width-z14; [zoom >= 15] { line/line-width: @steps-width-z15; } } }