forked from gravitystorm/openstreetmap-carto
-
Notifications
You must be signed in to change notification settings - Fork 16
/
buildings.mss
48 lines (39 loc) · 905 Bytes
/
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
#buildings [zoom >= 14] {
[building != 'yes'][zoom >= 18] {
line-color: #bdacac;
line-width: 0.75;
}
polygon-opacity: 0.8;
polygon-fill: #bdacac; /* 9%/74% (sat./bright) */
[zoom = 16] {polygon-fill: #c2b2b2;} /* 8%/76% */
[zoom = 17] {polygon-fill: #ccbebe;} /* 7%/80% */
[zoom >= 18] {
polygon-fill: #d1c5c5; /* 6%/82% */
}
[heritage != ''] {
polygon-fill: #888;
polygon-opacity: 0.5;
}
[building = 'greenhouse'] {
polygon-fill: #a0b090;
}
[building = 'train_station'],
[building = 'station'],
[building = 'public'],
[building = 'civic'] {
polygon-fill: #aaa;
}
[building = 'terminal'] {
polygon-fill: #cc99ff;
line-color: #330066;
line-width: 0.3;
}
[zoom >= 18][wall='no'],
[zoom >= 18][building='roof'] {
polygon-opacity: 0.4;
}
}
#indoor [zoom >= 18] {
line-color: #220044;
line-width: 0.2;
}