forked from gravitystorm/openstreetmap-carto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shapefiles.mss
54 lines (50 loc) · 880 Bytes
/
shapefiles.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
#necountries {
[zoom >= 1][zoom < 4] {
line-width: 0.2;
[zoom >= 2] {
line-width: 0.3;
}
[zoom >= 3] {
line-width: 0.4;
}
line-color: @admin-boundaries;
}
}
#world {
[zoom >= 0][zoom < 10] {
polygon-fill: @land-color;
polygon-simplify: 0.4;
[zoom < 8] {
line-color: darken(@water-color,20%);
line-simplify: 0.4;
line-width: 0.5;
line-offset: 0.5;
}
}
}
#coast-poly {
[zoom >= 10] {
polygon-fill: @land-color;
}
}
#icesheet-poly {
[zoom >= 8] {
polygon-fill: @glacier;
}
}
#icesheet-outlines {
[zoom >= 8] {
[ice_edge = 'ice_ocean'],
[ice_edge = 'ice_land'] {
line-width: 0.375;
line-color: @glacier-line;
[zoom >= 8] {
line-width: 0.5;
}
[zoom >= 10] {
line-dasharray: 4,2;
line-width: 0.75;
}
}
}
}