-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabels.mss
88 lines (81 loc) · 2.18 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
/* Fonts and font sets can be assigned to variables. The first font
will be preferred, and fall back to subsequent fonts for characters
that are not available, or if the entire font is not available to
Mapnik. */
@futura_med: "Futura Medium","Function Pro Medium","Ubuntu Regular","Trebuchet MS Regular","DejaVu Sans Book";
@futura_italic: "Futura Medium Italic","Function Pro Medium Italic","Ubuntu Italic","Trebuchet MS Italic","DejaVu Sans Oblique";
@futura_bold: "Futura Bold","Function Pro Bold","Ubuntu Bold","Trebuchet MS Bold","DejaVu Sans Bold";
/* ---- Countries ---- */
#country-name {
text-face-name: @futura_med;
text-fill:@line * 0.6;
text-size:9;
text-transform:uppercase;
text-halo-fill:rgba(255,255,255,0.5);
text-halo-radius:1;
text-line-spacing:1;
text-wrap-width:20;
text-name:"''"; /* hackish? */
[ScaleRank<2][zoom=2] {
text-name: "[ABBREV]";
}
[ScaleRank<3][zoom=3] {
text-name: "[ABBREV]";
text-size:10;
}
[ScaleRank<4][zoom=4] {
text-name: "[NAME]";
text-size:11;
}
[ScaleRank<5][zoom=5] {
text-name: "[NAME]";
text-size:12;
text-character-spacing:1;
text-line-spacing:1;
}
[ScaleRank<9][zoom>5] {
text-name: "[NAME]";
text-size:14;
text-character-spacing:2;
text-line-spacing:2;
}
/* [SOVEREIGNT='Liechtenstein'][zoom>6] {
text-name: "[NAME]";
text-size:50;
opacity:1;
text-fill:yellow;
text-halo-radius:5;
text-halo-fill:black;
text-comp-op:dst-out;
}*/
}
/* ---- CITIES ---- */
#cities[WORLDCITY=1][zoom>4] {
text-name: "[NAME]";
text-fill: @line * 0.3;
text-face-name:@futura_med;
text-size: 11;
text-dy: -4;
text-halo-fill: rgba(255,255,255,0.5);
text-halo-radius: 1;
point-file: url(icons/circle-7.png);
}
#cities[ADM0CAP=1][zoom>3] {
text-name: "[NAME]";
text-fill: @line * 0.3;
text-face-name:@futura_med;
text-size: 11;
text-dy: -5;
text-halo-fill: rgba(255,255,255,0.5);
text-halo-radius: 1;
point-file: url(icons/star-10.png);
}
/* ---- GEOGRAPHIC LINES ---- */
#geo-lines[zoom>1][ScaleRank<10]{
text-dy:-7;
text-name:"[Name]";
text-face-name:@futura_med;
text-fill:@line;
text-placement:line;
text-spacing:600;
}