Ticket #20102: josm_area_highway_style.mapcss

File josm_area_highway_style.mapcss, 400 bytes (added by Woazboat, 5 years ago)

(Rudimentary) style for area:highway

Line 
1meta
2{
3 title: "area:highway";
4 description: "Show highway areas";
5 version: "0.1";
6 author: "Woazboat";
7}
8
9
10area[area:highway] {
11 fill-color: darkgrey;
12}
13
14area[area:highway=footway] {
15 fill-color: darkgreen;
16}
17
18area[area:highway] area[area:highway] {
19 throwError: tr("Overlapping area:highway");
20}
21
22way!:closed[area:highway] {
23 throwError: tr("Unclosed area:highway");
24}