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 15
/
labels.mss
368 lines (328 loc) · 9.97 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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
// =====================================================================
// 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]';
@name_en: '[name_en]';
// ---------------------------------------------------------------------
// 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', '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';
// ---------------------------------------------------------------------
// 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>=2] {
text-name: @name_en;
text-face-name: @sans_bd;
text-transform: uppercase;
text-wrap-width: 100;
text-wrap-before: true;
text-fill: #334;
text-halo-fill: fadeout(#fff,80%);
text-halo-radius: 2;
text-halo-rasterizer: fast;
text-line-spacing: -4;
text-character-spacing: 0.5;
text-size: 8;
[zoom>=3][scalerank=1],
[zoom>=4][scalerank=2],
[zoom>=5][scalerank=3],
[zoom>=6][scalerank>3] {
text-size: 12;
}
[zoom>=4][scalerank=1],
[zoom>=5][scalerank=2],
[zoom>=6][scalerank=3],
[zoom>=7][scalerank>3] {
text-size: 15;
}
}
// ---------------------------------------------------------------------
// Marine
#marine_label[zoom>=2]["mapnik::geometry_type"=1],
#marine_label[zoom>=2]["mapnik::geometry_type"=2] {
text-name: @name;
text-face-name: @sans_it;
text-wrap-width: 60;
text-fill: darken(@water, 10);
text-halo-fill: fadeout(#fff, 75%);
text-halo-radius: 1.5;
text-size: 10;
text-character-spacing: 1;
["mapnik::geometry_type"=1] {
text-placement: point;
text-wrap-width: 30;
}
["mapnik::geometry_type"=2] {
text-placement: line;
}
// Oceans
[labelrank=1] {
text-size: 18;
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
// City labels with dots for low zoom levels.
// The separate attachment keeps the size of the XML down.
#place_label::citydots[type='city'][zoom>=4][zoom<=7][localrank<=1] {
// explicitly defining all the `ldir` values wer'e going
// to use shaves a bit off the final project.xml size
[ldir='N'],[ldir='S'],[ldir='E'],[ldir='W'],
[ldir='NE'],[ldir='SE'],[ldir='SW'],[ldir='NW'] {
shield-file: url("shield/dot.svg");
shield-unlock-image: true;
shield-name: @name;
shield-size: 12;
shield-face-name: @sans;
shield-placement: point;
shield-fill: #333;
shield-halo-fill: fadeout(#fff, 50%);
shield-halo-radius: 2;
shield-halo-rasterizer: fast;
shield-margin:30;
[zoom=7] { shield-size: 14; }
[ldir='E'] { shield-text-dx: 5; }
[ldir='W'] { shield-text-dx: -5; }
[ldir='N'] { shield-text-dy: -5; }
[ldir='S'] { shield-text-dy: 5; }
[ldir='NE'] { shield-text-dx: 4; shield-text-dy: -4; }
[ldir='SE'] { shield-text-dx: 4; shield-text-dy: 4; }
[ldir='SW'] { shield-text-dx: -4; shield-text-dy: 4; }
[ldir='NW'] { shield-text-dx: -4; shield-text-dy: -4; }
}
}
#place_label[zoom>=8][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: 2;
text-halo-rasterizer: fast;
text-size: 10;
text-line-spacing:-2;
text-margin:25;
// Cities
[type='city'][zoom>=8][zoom<=15] {
text-face-name: @sans_md;
text-size: 16;
text-line-spacing:-7;
[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: "''"; }
}
// Towns
[type='town'] {
text-size: 12;
text-halo-fill: fadeout(#fff, 50%);
text-halo-radius: 2.5;
[zoom>=12] { text-size: 12; }
[zoom>=14] { text-size: 16; }
[zoom>=16] { text-size: 22; }
// Hide at largest scales:
[zoom>=18] { text-name: "''"; }
}
// Villages and suburbs
[type='village'] {
text-size: 12;
text-halo-fill: fadeout(@land, 50%);
text-halo-radius: 2;
[zoom>=12] { text-size: 10; }
[zoom>=14] { text-size: 14; }
[zoom>=16] { text-size: 18; }
}
[type='hamlet'],
[type='suburb'],
[type='neighbourhood'] {
text-fill: #633;
text-face-name: @sans_it;
text-transform: none;
text-margin:80;
text-halo-radius: 2.5;
text-character-spacing: 0.5;
text-size: 14;
[zoom>=14] { text-size: 15; }
[zoom>=15] { text-size: 16; text-character-spacing: 1; }
[zoom>=16] { text-size: 18; text-character-spacing: 2; }
[zoom>=18] { text-size: 24; text-character-spacing: 3; }
}
}
// ---------------------------------------------------------------------
// Points of interest
// Rail stations
#poi_label[type='Rail Station'][network!=null][scalerank=1][zoom>=10],
#poi_label[type='Rail Station'][network!=null][scalerank=2][zoom>=10],
#poi_label[type='Rail Station'][network!=null][scalerank=3][zoom>=10] {
marker-file: url("rail/[network]-18.svg");
marker-height: 12;
marker-allow-overlap: false;
[zoom>13] {
marker-height:16;
}
[zoom>15] {
marker-height:24;
text-name: @name;
text-face-name: @sans_md;
text-fill: #333;
text-halo-fill: #fff;
text-halo-radius: 1;
text-halo-rasterizer: fast;
text-size: 12;
text-wrap-width: 80;
text-placement-type: simple;
text-dx: 11; text-dy: 11;
text-placements: "S,N,E,W";
text-min-padding:1;
}
// text labels first come in at zoom 16
[zoom>=16] {
text-size: 12;
text-halo-radius: 2;
text-dx: 15; text-dy: 12;
text-line-spacing:-2;
}
}
#poi_label[zoom>=13][scalerank<=1],
#poi_label[zoom>=15][scalerank<=2],
#poi_label[zoom>=16][scalerank<=3],
#poi_label[zoom>=18][scalerank<=4][localrank<=2] {
// 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:#888;
marker-height:12;
marker-file:url('icon/[maki]-12.svg');
}
::label[type!='Rail Station'] {
text-name: @name;
text-face-name: @sans_md;
text-size: 12;
text-margin:1;
text-fill: #888;
text-halo-fill: fadeout(#fff, 50%);
text-halo-radius: 1;
text-halo-rasterizer: fast;
text-wrap-width: 60;
text-line-spacing: -4;
//text-transform: uppercase;
//text-character-spacing: 0.25;
// POI labels with an icon need to be offset:
[maki!=null] { text-dy: 8; }
}
}
// ---------------------------------------------------------------------
// Roads
@us-shield-name: "[ref].replace(';.*', '').replace('^[^\d]*', '')";
#road_label::shield-pt[class='motorway'][zoom>=7][zoom<=10][localrank=1][reflen<=6],
#road_label::shield-pt[class='motorway'][zoom>=9][zoom<=10][localrank=1][reflen<=6],
#road_label::shield-ln[zoom>=11][reflen<=6] {
shield-name: "[ref].replace('·', '\n')";
shield-size: 9;
shield-line-spacing: -4;
shield-file: url('shield/[shield]-[reflen].svg');
shield-face-name: @sans;
shield-fill: #333;
[zoom>=14] {
shield-transform: scale(1.25,1.25);
shield-size: 11;
}
}
#road_label::shield-pt[class='motorway'][zoom>=7][zoom<=10][localrank=1][reflen<=6],
#road_label::shield-pt[class='motorway'][zoom>=9][zoom<=10][localrank=1][reflen<=6] {
shield-placement: point;
shield-avoid-edges: false;
}
#road_label::shield-ln[zoom>=11][reflen<=6] {
shield-placement: line;
shield-spacing: 400;
shield-min-distance: 50;
shield-avoid-edges: true;
[zoom>=14] {
shield-min-distance: 100;
}
}
#road_label {
text-name: @name;
text-placement: line; // text follows line path
text-face-name: @sans;
text-fill: #333;
text-halo-fill: fadeout(#fff, 75%);
text-halo-radius: 2;
text-halo-rasterizer: fast;
text-size: 12;
text-margin:20;
text-avoid-edges: true; // prevents clipped labels at tile edges
[type='motorway'] {text-face-name: @sans_bd; }
[zoom>=15] { text-size: 13; }
}
// ---------------------------------------------------------------------
// 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>=19] {
text-name: [house_num];
text-face-name: @sans_it;
text-fill: #999;
[zoom=19] { text-size: 10; }
[zoom>=20] { text-size: 12; }
}