-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransit.mss
63 lines (60 loc) · 1.73 KB
/
transit.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
// =====================================================================
// Suburb Labels
// =====================================================================
#place_label[type='suburb'][zoom>=12][localrank=1] {
text-name: @name;
text-face-name: @sans_lt;
text-placement: point;
text-fill: @other_text;
text-size: 17;
text-halo-fill: @other_halo;
text-halo-radius: 1.5;
text-halo-rasterizer: fast;
text-wrap-width: 200;
text-wrap-before: true;
text-line-spacing: -2;
text-allow-overlap: false;
[name="Siedlung am Lerchenauer See"],
[name="Au-Haidhausen"], [name="Sendlinger Feld"],
[name="Parkstadt Bogenhausen"], [name="Cosimapark"], [name="Fideliopark"]{
text-name: '';
}
}
// =====================================================================
// Public Transit Stations
// =====================================================================
#rail_station_label[network=~'rail.*'][zoom>13] {
marker-file: url("img/rail/[network]-18.svg");
marker-height: 18;
marker-allow-overlap: false;
text-name: @name;
text-face-name: @sans;
text-fill: @transport_text;
text-halo-fill: #fff;
text-halo-radius: 1.5;
text-halo-rasterizer: fast;
text-size: 11;
text-wrap-width: 80;
text-placement-type: simple;
text-dy: 11;
text-allow-overlap: false;
[zoom>=15] {
text-size: 10;
text-halo-radius: 2;
text-dy: 15;
}
[name="Karlsplatz (Stachus)"] {
[network="rail-metro"] {
text-name: '';
text-face-name: @sans;
}
}
[name="München Hauptbahnhof Gleis 5-10"],
[name="München Hauptbahnhof"],
[name="Fraunhoferstraße"],
[name="München Hauptbahnhof Gleis 27-36"]{
text-name: '';
marker-opacity: 0;
marker-allow-overlap: true;
}
}