Skip to content
Permalink
Newer
Older
100644 479 lines (416 sloc) 10.3 KB
1
// --- Parks, woods, other green things ---
2
4
@grass: #cfeca8; // also meadow, common, garden, village_green, conservation
5
@golf_course: #b5e3b5;
6
@natural: #c6e4b4; // also grassland
7
@park: #b6fdb6; // also recreation_ground
8
@wood: #aed1a0;
9
@vineyard: #abdf96;
10
11
// --- sports ---
12
13
@stadium: #3c9; // also sports_centre
14
@track: #74dcba;
15
@pitch: #8ad3af;
16
17
// --- "base" landuses ---
18
19
@residential: #E1E1E1; // Lch(89,0,0)
20
@residential-line: #B9B9B9; // Lch(75,0,0)
21
@retail: #FFD6D1; // Lch(89,16,30)
22
@retail-line: #D99C95; // Lch(70,25,30)
23
@commercial: #F2DAD9; // Lch(89,8.5,25)
24
@commercial-line: #D1B2B0; // Lch(75,12,25)
25
@industrial: #EBDBE8; // Lch(89,9,330)
26
@industrial-line: #C6B3C3; // Lch(75,11,330)
27
@railway: @industrial;
28
@railway-line: @industrial-line;
29
@farmland: #EDDDC9; // Lch(89,12,80) (Also used for farm)
30
@farmland-line: #C8B69E; // Lch(75,15,80)
31
June 3, 2014 04:06
32
@farmyard: #EFD6B5; // Lch(87,20,80)
33
@farmyard-line: #D1B48C; // Lch(75,25,80)
34
35
// --- Other ----
36
37
@aerodrome: #ccc;
38
@allotments: #e5c7ab;
39
@apron: #e9d1ff;
40
@attraction: #f2caea;
41
@barracks: #ff8f8f;
42
@campsite: #ccff99; // also caravan_site, picnic_site
43
@cemetery: #aacbaf; // also grave_yard
44
@construction: #9d9d6c;
45
@danger_area: pink;
46
@desert: #e3b57a;
47
@field: #660;
48
@garages: #996;
49
@heath: #d6d99f;
50
@parking: #f7efb7;
51
@playground: #ccfff1;
52
@power: #bbb;
53
@rest_area: #efc8c8; // also services
54
@sand: #ffdf88;
55
@school: #f0f0d8; // also university, college, hospital, kindergarten
56
57
#landcover {
58
[feature = 'leisure_swimming_pool'][zoom >= 14] {
59
polygon-fill: @water-color;
60
line-color: saturate(darken(@water-color, 40%), 30%);
61
line-width: 0.5;
62
}
63
64
[feature = 'leisure_playground'][zoom >= 13] {
65
polygon-fill: @playground;
66
line-color: saturate(darken(@playground, 60%), 30%);
67
line-width: 0.3;
68
}
69
70
[feature = 'tourism_camp_site'],
71
[feature = 'tourism_caravan_site'],
72
[feature = 'tourism_picnic_site'] {
73
[zoom >= 13] {
74
polygon-fill: @campsite;
75
polygon-opacity: 0.5;
76
line-color: saturate(darken(@campsite, 60%), 30%);
77
line-width: 0.3;
78
}
79
}
80
81
[feature = 'tourism_attraction'][zoom >= 10] {
82
polygon-fill: @attraction;
83
}
84
85
[feature = 'landuse_quarry'][zoom >= 11] {
86
polygon-pattern-file: url('symbols/quarry2.png');
87
line-width: 0.5;
88
line-color: grey;
89
}
90
91
[feature = 'landuse_vineyard'] {
92
[zoom >= 10][zoom < 13] {
93
polygon-fill: @vineyard;
94
}
95
[zoom >= 13] {
96
polygon-pattern-file: url('symbols/vineyard.png');
97
}
98
}
99
100
[feature = 'landuse_orchard'][zoom >= 10] {
101
polygon-pattern-file: url('symbols/orchard.png');
102
}
103
104
[feature = 'landuse_cemetery'],
105
[feature = 'landuse_grave_yard'],
106
[feature = 'amenity_grave_yard'] {
107
[zoom >= 10][zoom < 14] {
108
polygon-fill: @cemetery;
110
[zoom >= 14] {
111
[religion = 'jewish'] { polygon-pattern-file: url('symbols/cemetery_jewish.18.png'); }
112
[religion = 'christian'] { polygon-pattern-file: url('symbols/grave_yard.png'); }
113
[religion = 'INT-generic'] { polygon-pattern-file: url('symbols/grave_yard_generic.png'); }
114
}
115
}
116
117
[feature = 'landuse_residential'][zoom >= 10] {
118
polygon-fill: @residential;
119
[zoom >= 16] {
120
line-width: .5;
121
line-color: @residential-line;
122
[name != ''] {
123
line-width: 0.7;
124
}
125
127
}
128
129
[feature = 'landuse_garages'][zoom >= 12] {
130
polygon-fill: @garages;
131
polygon-opacity: 0.2;
132
}
133
134
[feature = 'military_barracks'][zoom >= 10] {
135
polygon-fill: @barracks;
136
}
137
June 10, 2014 01:18
138
[feature = 'landuse_field'] {
139
[zoom >= 10] {
140
polygon-fill: @field;
141
polygon-opacity: 0.2;
142
[zoom >= 14] {
143
line-width: 0.3;
144
line-opacity: 0.4;
145
line-color: saturate(darken(@field, 40%), 20%);
146
}
147
}
148
}
149
150
[feature = 'military_danger_area'] {
151
[zoom >= 9][zoom < 11] {
152
polygon-fill: @danger_area;
153
polygon-opacity: 0.3;
154
}
155
[zoom >= 11] {
156
polygon-pattern-file: url('symbols/danger.png');
157
}
158
}
159
160
[feature = 'landuse_meadow'],
161
[feature = 'landuse_grass'] {
162
[zoom >= 10] {
163
polygon-fill: @grass;
164
}
165
}
166
167
[feature = 'leisure_park'],
168
[feature = 'leisure_recreation_ground'] {
169
[zoom >= 10] {
170
polygon-fill: @park;
171
polygon-opacity: 0.6;
172
}
173
}
174
175
[feature = 'tourism_zoo'][zoom >= 10] {
176
polygon-pattern-file: url('symbols/zoo.png');
177
}
178
179
[feature = 'leisure_common'][zoom >= 10] {
180
polygon-fill: @grass;
181
}
182
183
[feature = 'leisure_garden'][zoom >= 10] {
184
polygon-fill: @grass;
185
}
186
187
[feature = 'leisure_golf_course'][zoom >= 10] {
188
polygon-fill: @golf_course;
189
}
190
191
[feature = 'landuse_allotments'] {
192
[zoom >= 10][zoom < 14] {
193
polygon-fill: @allotments;
194
}
195
[zoom >= 14] {
196
polygon-pattern-file: url('symbols/allotments.png');
197
}
198
}
199
200
[feature = 'landuse_forest'] {
202
polygon-fill: @forest;
203
}
204
[zoom >= 14] {
205
polygon-pattern-file: url('symbols/forest.png');
206
}
207
}
208
209
[feature = 'landuse_farmyard'][zoom >= 9] {
210
polygon-fill: @farmyard;
211
[zoom >= 16] {
212
line-width: 0.5;
June 3, 2014 04:06
213
line-color: @farmyard-line;
214
[name != ''] {
215
line-width: 0.7;
216
}
June 3, 2014 04:06
217
}
218
}
219
220
[feature = 'landuse_farm'],
221
[feature = 'landuse_farmland'] {
222
[zoom >= 9] {
223
polygon-fill: @farmland;
224
[zoom >= 16] {
225
line-width: .5;
226
line-color: @farmland-line;
227
}
228
}
229
}
230
231
[feature = 'landuse_recreation_ground'],
232
[feature = 'landuse_conservation'] {
233
[zoom >= 10] {
234
polygon-fill: @grass;
235
}
236
}
237
238
[feature = 'landuse_village_green'][zoom >= 11] {
239
polygon-fill: @grass;
240
}
241
242
[feature = 'landuse_retail'][zoom >= 10] {
243
polygon-fill: @retail;
244
[zoom >= 16] {
245
line-width: 0.5;
246
line-color: @retail-line;
247
[name != ''] {
248
line-width: 0.7;
249
}
250
}
251
}
252
253
[feature = 'landuse_industrial'][zoom >= 10] {
254
polygon-fill: @industrial;
255
[zoom >= 16] {
256
line-width: .5;
257
line-color: @industrial-line;
258
[name != ''] {
259
line-width: 0.7;
260
}
261
}
262
}
263
264
[feature = 'landuse_railway'][zoom >= 10] {
265
polygon-fill: @railway;
266
[zoom >= 16][name != ''] {
267
line-width: 0.7;
268
line-color: @railway-line;
269
}
270
}
271
272
[feature = 'power_station'][zoom >= 10],
273
[feature = 'power_generator'][zoom >= 10],
274
[feature = 'power_sub_station'][zoom >= 13],
275
[feature = 'power_substation'][zoom >= 13] {
276
polygon-fill: @power;
277
[zoom >= 12] {
278
line-width: 0.4;
279
line-color: darken(@power, 40%);
280
}
281
}
282
283
[feature = 'landuse_commercial'][zoom >= 10] {
284
polygon-fill: @commercial;
285
[zoom >= 16] {
286
line-width: 0.5;
287
line-color: @commercial-line;
288
[name != ''] {
289
line-width: 0.7;
290
}
291
293
}
294
295
[feature = 'landuse_brownfield'],
296
[feature = 'landuse_landfill'],
297
[feature = 'landuse_greenfield'],
298
[feature = 'landuse_construction'] {
299
[zoom >= 10] {
September 26, 2013 23:08
300
polygon-fill: @construction;
301
polygon-opacity: 0.7;
302
}
303
}
304
September 7, 2013 17:34
305
[feature = 'natural_wood'] {
306
[zoom >= 8] {
307
polygon-fill: @wood;
308
}
309
}
310
311
[feature = 'natural_desert'][zoom >= 8] {
312
polygon-fill: @desert;
313
}
314
315
[feature = 'natural_sand'][zoom >= 10] {
316
polygon-fill: @sand;
317
}
318
319
[feature = 'natural_heath'][zoom >= 10] {
320
polygon-fill: @heath;
321
}
322
323
[feature = 'natural_grassland'][zoom >= 10] {
324
polygon-fill: #c6e4b4;
325
}
326
327
[feature = 'natural_scrub'] {
328
[zoom >= 10][zoom < 14] {
December 14, 2012 11:14
329
polygon-fill: #b5e3b5;
330
}
331
[zoom >= 14] {
332
polygon-pattern-file: url('symbols/scrub.png');
333
}
334
}
335
336
[feature = 'amenity_university'],
337
[feature = 'amenity_college'],
338
[feature = 'amenity_school'],
339
[feature = 'amenity_hospital'],
340
[feature = 'amenity_kindergarten'] {
341
[zoom >= 10] {
342
polygon-fill: @school;
343
[zoom >= 12] {
344
line-width: 0.3;
345
line-color: brown;
346
}
347
}
348
}
349
350
[feature = 'amenity_parking'][zoom >= 10] {
351
polygon-fill: @parking;
352
[zoom >= 15] {
353
line-width: 0.3;
354
line-color: saturate(darken(@parking, 40%), 20%);
355
}
356
}
357
358
[feature = 'aeroway_apron'][zoom >= 12] {
359
polygon-fill: @apron;
360
}
361
362
[feature = 'aeroway_aerodrome'][zoom >= 12] {
363
polygon-fill: @aerodrome;
364
polygon-opacity: 0.2;
365
line-width: 0.2;
366
line-color: saturate(darken(@aerodrome, 40%), 20%);
367
}
368
369
[feature = 'natural_beach'][zoom >= 13] {
370
polygon-pattern-file: url('symbols/beach.png');
371
}
372
373
[feature = 'highway_services'],
374
[feature = 'highway_rest_area'] {
375
[zoom >= 14] {
376
polygon-fill: @rest_area;
377
}
378
}
November 15, 2012 14:19
379
380
[feature = 'leisure_sports_centre'],
381
[feature = 'leisure_stadium'] {
November 15, 2012 14:24
382
[zoom >= 10] {
383
polygon-fill: @stadium;
November 15, 2012 14:24
384
}
385
}
386
387
[feature = 'leisure_track'][zoom >= 10] {
388
polygon-fill: @track;
November 15, 2012 14:24
389
line-width: 0.5;
390
line-color: saturate(darken(@track, 40%), 20%);
November 15, 2012 14:24
391
}
392
393
[feature = 'leisure_pitch'][zoom >= 10] {
394
polygon-fill: @pitch;
November 15, 2012 14:24
395
line-width: 0.5;
396
line-color: saturate(darken(@pitch, 40%), 20%);
November 15, 2012 14:24
397
}
398
}
400
/* man_made=cutline */
401
#landcover-line {
402
[zoom >= 14] {
403
line-width: 3;
404
line-join: round;
405
line-cap: square;
406
line-color: @land-color;
407
[zoom >= 16] {
408
line-width: 6;
409
}
410
}
411
}
412
413
#landuse-overlay {
414
[landuse = 'military'][zoom >= 10]::landuse {
415
polygon-pattern-file: url('symbols/military_red_hatch.png');
416
polygon-pattern-alignment: global;
417
line-color: #f55;
418
line-width: 3;
419
line-opacity: 0.329;
420
}
421
}
422
423
#cliffs {
424
[natural = 'cliff'][zoom >= 13] {
425
line-pattern-file: url('symbols/cliff.png');
426
[zoom >= 15] {
427
line-pattern-file: url('symbols/cliff2.png');
428
}
429
}
430
[man_made = 'embankment'][zoom >= 15]::man_made {
431
line-pattern-file: url('symbols/cliff.png');
432
}
433
}
434
435
#area-barriers {
436
[zoom >= 16] {
437
line-color: #444;
438
line-width: 0.4;
439
[barrier = 'hedge'] {
440
polygon-fill: #aed1a0;
441
}
442
}
443
}
444
445
.barriers {
446
[zoom >= 16] {
447
line-width: 0.4;
448
line-color: #444;
449
}
450
[barrier = 'embankment'][zoom >= 14] {
451
line-width: 0.4;
452
line-color: #444;
453
}
454
[barrier = 'hedge'][zoom >= 16] {
455
line-width: 3;
456
line-color: #aed1a0;
457
}
458
}
459
460
#tree-row {
461
[natural = 'tree_row'][zoom >= 16] {
462
line-pattern-file: url('symbols/tree_row.png');
463
[zoom >= 17] {
464
line-pattern-file: url('symbols/tree_row2.png');
465
}
466
}
467
}
468
469
#theme-park {
470
[tourism = 'theme_park'][zoom >= 13] {
471
line-color: #734a08;
472
line-width: 1.5;
473
line-dasharray: 9,3;
474
line-opacity: 0.6;
475
[zoom >= 15] {
476
line-width: 2.5;
477
}
478
}
479
}