forked from osm-ar/osm-ar-carto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildings.mss
50 lines (47 loc) · 1.01 KB
/
buildings.mss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#buildings-lz {
[zoom >= 10] {
polygon-clip: false;
[railway = 'station']::railway,
[building = 'station'] {
polygon-fill: #d4aaaa;
}
[building = 'supermarket'] {
polygon-fill: pink;
polygon-opacity: 0.5;
}
[amenity = 'place_of_worship']::amenity {
polygon-opacity: 0.5;
polygon-fill: #777;
[zoom >= 15] {
polygon-opacity: 0.9;
polygon-fill: #aaa;
line-width: 0.3;
line-color: #111;
}
}
}
}
#buildings {
[building = 'INT-light'][zoom >= 12] {
polygon-fill: #bca9a9;
polygon-opacity: 0.7;
polygon-clip: false;
}
[building != 'INT-light'][building != ''][zoom >= 12] {
polygon-fill: #bca9a9;
polygon-opacity: 0.9;
polygon-clip: false;
[zoom >= 16] {
line-color: #330066;
line-width: 0.2;
}
}
[aeroway = 'terminal'][zoom >= 12]::aeroway {
polygon-fill: #cc99ff;
polygon-clip: false;
[zoom >= 14] {
line-color: #330066;
line-width: 0.2;
}
}
}