forked from mapbox/mapbox-studio-osm-bright.tm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabels.mss
231 lines (204 loc) · 5.88 KB
/
labels.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
// =====================================================================
// LABELS
// General notes:
// - `text-halo-rasterizer: fast;` gives a noticeable performance
// boost to render times and is recommended for *all* halos.
// ---------------------------------------------------------------------
// Languages
// There are 5 language options in the MapBox Streets vector tiles:
// - Local/default: '[name]'
// - English: '[name_en]'
// - French: '[name_fr]'
// - Spanish: '[name_es]'
// - German: '[name_de]'
@name: '[name_de]';
// ---------------------------------------------------------------------
// Fonts
// All fontsets should have a good fallback that covers as many glyphs
// as possible. 'Arial Unicode MS Regular' and 'Arial Unicode MS Bold'
//are recommended as final fallbacks if you have them available.
//They support all the characters used in the MapBox Streets vector tiles.
@fallback: 'Open Sans Regular';
@sans: 'Open Sans Regular', @fallback;
@sans_md: 'Open Sans Semibold', @fallback;
@sans_bd: 'Open Sans Bold', @fallback;
@sans_it: 'Open Sans Italic', @fallback;
// ---------------------------------------------------------------------
// Countries
// The country labels in MapBox Streets vector tiles are placed by hand,
// optimizing the arrangement to fit as many as possible in densely-
// labeled areas.
#country_label[zoom>=3] {
text-name: @name;
text-face-name: @sans_bd;
text-transform: uppercase;
text-wrap-width: 100;
text-wrap-before: true;
text-fill: #6f6f7c;
text-halo-fill: fadeout(#fff,80%);
text-halo-radius: 2;
text-halo-rasterizer: fast;
text-line-spacing: -4;
text-opacity: 0.5;
text-character-spacing: 0.5;
text-size: 9;
[zoom>=3][scalerank=1],
[zoom>=4][scalerank=2],
[zoom>=5][scalerank=3],
[zoom>=6][scalerank>3] {
text-size: 10;
}
[zoom>=4][scalerank=1],
[zoom>=5][scalerank=2],
[zoom>=6][scalerank=3],
[zoom>=7][scalerank>3] {
text-size: 12;
}
}
#country_label_line {
// Lines that connect offset labels to small
// island & coastal countries at small scales.
line-color: #fff;
line-dasharray: 3,1;
}
// ---------------------------------------------------------------------
// Marine
#marine_label {
text-name: @name;
text-face-name: @sans_it;
text-wrap-width: 60;
text-wrap-before: true;
text-fill: darken(@water, 10);
text-halo-fill: fadeout(#fff, 75%);
text-halo-radius: 1.5;
text-size: 10;
text-character-spacing: 1;
// Some marine labels should be drawn along a line
// rather than on a point (the default)
[placement='line'] {
text-placement: line;
text-avoid-edges: true;
}
// Oceans
[labelrank=1] {
text-size: 18;
text-wrap-width: 120;
text-character-spacing: 4;
text-line-spacing: 8;
}
[labelrank=2] { text-size: 14; }
[labelrank=3] { text-size: 11; }
[zoom>=5] {
text-size: 12;
[labelrank=1] { text-size: 22; }
[labelrank=2] { text-size: 16; }
[labelrank=3] {
text-size: 14;
text-character-spacing: 2;
}
}
}
// ---------------------------------------------------------------------
// Cities, towns, villages, etc
#place_label[zoom>=6][localrank<=1]{
text-name: @name;
text-face-name: @sans;
text-wrap-width: 80;
text-wrap-before: true;
text-fill: #333;
text-halo-fill: fadeout(#fff, 50%);
text-halo-radius: 1;
text-halo-rasterizer: fast;
text-size: 0;
// Echte "Städte"
[type='city'][zoom>=6][zoom<=15] {
text-face-name: @sans;
text-size: 12;
[zoom>=10] {
text-size: 18;
text-wrap-width: 140;
}
[zoom>=12] {
text-size: 24;
text-wrap-width: 180;
}
// Hide at largest scales:
[zoom>=16] { text-name: "''"; }
}
[type='town'] {
text-size: 0;
[zoom>=10] { text-size: 12; }
[zoom>=14] { text-size: 20; }
[zoom>=16] { text-size: 24; }
// Hide at largest scales:
[zoom>=18] { text-name: "''"; }
}
[type='village'],
[type='hamlet'],
[type='suburb'],
[type='neighbourhood'] {
text-name: "''";
}
}
// ---------------------------------------------------------------------
// Points of interest
#poi_label[zoom=13][scalerank<=1],
#poi_label[zoom=14][scalerank<=2],
#poi_label[zoom=15][scalerank<=2],
#poi_label[zoom=16][scalerank<=3],
#poi_label[zoom=17][scalerank<=4][localrank<=2],
#poi_label[zoom>=18] {
// Separate icon and label attachments are created to ensure that
// all icon placement happens first, then labels are placed only
// if there is still room.
::icon[maki!=null] {
// The [maki] field values match a subset of Maki icon names, so we
// can use that in our url expression.
// Not all POIs have a Maki icon assigned, so we limit this section
// to those that do. See also <https://www.mapbox.com/maki/>
marker-fill:#666;
marker-file:url('icon/[maki]-12.svg');
}
::label {
text-name: @name;
text-face-name: @sans_md;
text-size: 10;
text-fill: #666;
text-halo-fill: fadeout(#fff, 50%);
text-halo-radius: 1;
text-halo-rasterizer: fast;
text-wrap-width: 70;
text-line-spacing: -1;
//text-transform: uppercase;
//text-character-spacing: 0.25;
// POI labels with an icon need to be offset:
[maki!=null] { text-dy: 8; }
}
}
// ---------------------------------------------------------------------
// Water
#water_label {
[zoom<=13], // automatic area filtering @ low zooms
[zoom>=14][area>500000],
[zoom>=16][area>10000],
[zoom>=17] {
text-name: @name;
text-face-name: @sans_it;
text-fill: darken(@water, 15);
text-size: 12;
text-wrap-width: 100;
text-wrap-before: true;
text-halo-fill: fadeout(#fff, 75%);
text-halo-radius: 1.5;
}
}
// ---------------------------------------------------------------------
// House numbers
#housenum_label[zoom>=18] {
text-name: [house_num];
text-face-name: @sans_it;
text-fill: #cba;
text-size: 8;
[zoom=19] { text-size: 10; }
[zoom>=20] { text-size: 12; }
}