-
Notifications
You must be signed in to change notification settings - Fork 2
/
air.mss
57 lines (55 loc) · 1.11 KB
/
air.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
51
52
53
54
55
56
57
/*
* This file is part of brighmed, a style for use with Meddo vector tiles
* @author Paul Norman <[email protected]>
* @copyright 2017 Paul Norman, MIT license
*/
/* Airport stuff */
@aeroway-color: #e6e1dc;
#aeroway {
['mapnik::geometry_type' = 2] {
[class = 'runway'][zoom >= 11] {
line-color: @aeroway-color;
line-width: 2.5;
[zoom >= 12] {
line-width: 3;
}
[zoom >= 13] {
line-width: 5;
}
[zoom >= 14] {
line-width: 7;
}
[zoom >= 15] {
line-width: 10;
}
[zoom >= 16] {
line-width: 13;
}
[zoom >= 17] {
line-width: 21;
}
}
[class = 'taxiway'][zoom >= 12] {
line-color: @aeroway-color;
line-width: .75;
[zoom >= 13] {
line-width: 1.25;
}
[zoom >= 14] {
line-width: 2;
}
[zoom >= 15] {
line-width: 2.75;
}
[zoom >= 16] {
line-width: 4;
}
[zoom >= 17] {
line-width: 5.5;
}
}
}
['mapnik::geometry_type' = 3][zoom >= 13] {
polygon-fill: @aeroway-color;
}
}