-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrailmap.mapcss
122 lines (112 loc) · 1.95 KB
/
trailmap.mapcss
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
meta
{
title: "Trailmap";
description: "Trailmap JOSM Map Paint Style";
version: "0.1_2021-10-15";
author: "Markku Huotari";
}
/* road classes - width */
way[highway=primary],
way[highway=secondary],
way[highway=tertiary]
{
width: 10;
color: #e3e08c;
}
way[highway=service],
way[highway=residential],
way[highway=unclassified]
{
width: 10;
color: #FFFFFF;
}
way[highway=cycleway][surface=paved],
way[highway=cycleway][surface=asphalt],
way[highway=cycleway][surface=concrete]
{
width: 10;
color: #0679d3;
dashes: 25,5;
}
way[highway=cycleway][surface=unpaved],
way[highway=cycleway][surface=compacted],
way[highway=cycleway][surface=fine_gravel],
way[highway=cycleway][surface=gravel],
way[highway=cycleway][surface=rock]
{
width: 10;
color: #0679d3;
dashes: 7,3;
}
way[highway=track][mtb:scale]
{
width: 10;
}
way[highway=footway]
{
width: 8;
}
way[highway=path][mtb:scale]
{
width: 8;
}
/* mtb:scale - colour | note mtb:scale = 4 to 6 still needs colour specification */
way[mtb:scale=0]
{
color: #5baf2f;
dashes: 25,5;
dashes-background-color: #000000;
}
way[mtb:scale=1]
{
color: #f1ef2f;
dashes: 25,5;
dashes-background-color: #000000;
}
way[mtb:scale=2]
{
color: #d3aa06;
dashes: 25,5;
dashes-background-color: #000000;
}
way[mtb:scale=3]
{
color: #d30631;
dashes: 25,5;
dashes-background-color: #000000;
}
way[mtb:scale=4]
{
color: #FF0000;
dashes: 25,5;
dashes-background-color: #000000;
}
way[mtb:scale=5]
{
color: #FF0000;
dashes: 25,5;
dashes-background-color: #000000;
}
way[mtb:scale=6]
{
color: #FF0000;
dashes: 25,5;
dashes-background-color: #000000;
}
/* Special access settings */
way[bicycle=no]
{
color: #FF0000;
dashes: 2,2;
}
way[highway=footway]
{
width: 2;
color: #FF0000;
dashes: 20,5;
}
way[highway=footway][bicycle=yes]
{
color: #0679d3;
dashes: 7,3;
}