This repository has been archived by the owner on Jan 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
style.mss
133 lines (116 loc) · 3.08 KB
/
style.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Languages: name (local), name_en, name_fr, name_es, name_de
@name: '[name_en]';
// Fonts //
@fallback: 'Open Sans Regular';
@sans: 'Open Sans Regular', 'Arial Unicode MS Regular';
@sans_md: 'Open Sans Semibold', 'Arial Unicode MS Regular';
@sans_bd: 'Open Sans Bold','Arial Unicode MS Bold';
@sans_it: 'Open Sans Italic', 'Arial Unicode MS Regular';
@sans_bdit: 'Open Sans Bold Italic','Arial Unicode MS Bold';
/*
This style is designed to be easily recolored by adjusting the color
variables below. For predicatable feature relationships,
maintain or invert existing value (light to dark) scale.
*/
// Color palette //
@road: #484848;
@land: #111111;
@fill1: #000000;
@fill2: #444444;
@fill3: #888888;
@fill4: #ffffff;
@fill5: #7a7a7a;
@text: #888888;
Map { background-color: @land; }
// Political boundaries //
#admin[admin_level=2][maritime=0] {
line-join: round;
line-color: @fill5;
line-width: 1;
[zoom>=5] { line-width: 1.4; }
[zoom>=6] { line-width: 1.8; }
[zoom>=8] { line-width: 2; }
[zoom>=10] { line-width: 3; }
[disputed=1] { line-dasharray: 4,4; }
}
#admin[admin_level>2][maritime=0] {
line-join: round;
line-color: @fill5;
line-width: 1;
line-dasharray: 3,2;
[zoom>=6] { line-width: 1.5; }
[zoom>=8] { line-width: 1.8; }
}
// Land Features //
#landuse[class='cemetery'],
#landuse[class='park'],
#landuse[class='wood'],
#landuse_overlay {
polygon-fill: darken(@land,3);
[zoom>=15] { polygon-fill:mix(@land,@fill4,95); }
}
#landuse[class='pitch'],
#landuse[class='sand'] {
polygon-fill: mix(@land,@fill4,90);
}
#landuse[class='hospital'],
#landuse[class='industrial'],
#landuse[class='school'] {
polygon-fill: mix(@land,@fill1,95);
}
#building {
polygon-fill: mix(@fill2,@land,25);
[zoom>=16]{ polygon-fill: mix(@fill2,@land,50);}
}
#aeroway {
['mapnik::geometry_type'=3][type!='apron'] {
polygon-fill: mix(@fill2,@land,25);
[zoom>=16]{ polygon-fill: mix(@fill2,@land,50);}
}
['mapnik::geometry_type'=2] {
line-color: mix(@fill2,@land,25);
line-width: 1;
[zoom>=13][type='runway'] { line-width: 4; }
[zoom>=16] {
[type='runway'] { line-width: 6; }
line-width: 3;
line-color: mix(@fill2,@land,50);
}
}
}
// Water Features //
#water {
::shadow {
polygon-fill: mix(@land,@fill4,75);
}
::fill {
// a fill and overlay comp-op lighten the polygon-
// fill from ::shadow.
polygon-fill: @land;
comp-op: soft-light;
// blurring reveals the polygon fill from ::shadow around
// the edges of the water
image-filters: agg-stack-blur(10,10);
image-filters-inflate: true;
}
}
// Water color is calculated by sampling the resulting color from
// the soft-light comp-op in the #water layer style above.
@water: #2e2e2e;
#waterway {
[type='river'],
[type='canal'] {
line-color: @water;
line-width: 0.5;
[zoom>=12] { line-width: 1; }
[zoom>=14] { line-width: 2; }
[zoom>=16] { line-width: 3; }
}
[type='stream'] {
line-color: @water;
line-width: 0.5;
[zoom>=14] { line-width: 1; }
[zoom>=16] { line-width: 2; }
[zoom>=18] { line-width: 3; }
}
}