diff --git a/data/mapcss-mapping.csv b/data/mapcss-mapping.csv index 93eda075a4..090ce8d8e9 100644 --- a/data/mapcss-mapping.csv +++ b/data/mapcss-mapping.csv @@ -1005,3 +1005,5 @@ place|city|capital|9;[place=city][capital=9];;name;int_name;1004; place|city|capital|10;[place=city][capital=10];;name;int_name;1005; place|city|capital|11;[place=city][capital=11];;name;int_name;1006; hwtag|yesfoot;[hwtag=yesfoot];;name;int_name;1007; +public_transport|platform;[public_transport=platform];;name;int_name;1008; +highway|platform;[highway=platform];;name;int_name;1009; diff --git a/data/styles/include/base_publictransport.mapcss b/data/styles/include/base_publictransport.mapcss index 6a31bb5a98..02c0fd6ac3 100644 --- a/data/styles/include/base_publictransport.mapcss +++ b/data/styles/include/base_publictransport.mapcss @@ -305,3 +305,19 @@ node|z16-[railway=station][transport=subway] { icon-image: subway-station-l.svg; } + +area|z16[public_transport=platform], +line|z16[public_transport=platform] +{ + fill-color: @public_transport_platform; + color: @public_transport_platform; + width: 4; +} + +area|z17-[public_transport=platform], +line|z17-[public_transport=platform] +{ + fill-color: @public_transport_platform; + color: @public_transport_platform; + width: 8; +} diff --git a/data/styles/include/base_roads.mapcss b/data/styles/include/base_roads.mapcss index b4543e901e..57db128193 100644 --- a/data/styles/include/base_roads.mapcss +++ b/data/styles/include/base_roads.mapcss @@ -1267,3 +1267,19 @@ area|z15-[area:highway=footway], text-color: @dark_gray_40; text-position: center } + +area|z16[highway=platform], +line|z16[highway=platform] +{ + fill-color: @highway_platform; + color: @highway_platform; + width: 4; +} + +area|z17-[highway=platform], +line|z17-[highway=platform] +{ + fill-color: @highway_platform; + color: @highway_platform; + width: 8; +} diff --git a/data/styles/style-dark/colors_dark.mapcss b/data/styles/style-dark/colors_dark.mapcss index 5fb2d32311..5dba566119 100644 --- a/data/styles/style-dark/colors_dark.mapcss +++ b/data/styles/style-dark/colors_dark.mapcss @@ -59,6 +59,7 @@ @highway_path: #3C3B38; @highway_pedestrian: #353434; @highway_pedestrian_area: #242423; +@highway_platform: #444444; @highway_primary: #785E14; @highway_raceway: #785E14; @highway_secondary: #5A4800; @@ -97,6 +98,7 @@ @piste_nordic: #700; @pitch_fill: #224d67; @power_fill: #414141; +@public_transport_platform: #444444; @rail_z12: #333333; @rail_z14: #555; @rail_z14_base: #191919; diff --git a/data/styles/style-light/colors_light.mapcss b/data/styles/style-light/colors_light.mapcss index 470bc39a34..000436ad1a 100644 --- a/data/styles/style-light/colors_light.mapcss +++ b/data/styles/style-light/colors_light.mapcss @@ -59,6 +59,7 @@ @highway_path: #d79331; @highway_pedestrian: #b9ba95; @highway_pedestrian_area: #b9ba95; +@highway_platform: #bbbbbb; @highway_primary: #fde066; @highway_raceway: #e8e4d4; @highway_secondary: #fffb80; @@ -97,6 +98,7 @@ @piste_nordic: #c00000; @pitch_fill: #ddb298; @power_fill: #bebebe; +@public_transport_platform: #bbbbbb; @rail_z12: silver; @rail_z14: #888888; @rail_z14_base: #e6e6e6;