-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayers.toml
132 lines (118 loc) · 2.8 KB
/
layers.toml
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
123
124
125
126
127
128
129
130
131
132
[layers]
# Base map layer configuration; allows to filter map based on tags.
#
# Use
# - The OpenStreetMap wiki [1] to check out features and how they are mapped
# - TagInfo [2] to see tag distributions in the OpenStreetMap database
# - Overpass Turbo [3] to make queries against the OpenStreetMap database
#
# 1 https://wiki.openstreetmap.org/wiki/Map_Features
# 2 https://taginfo.openstreetmap.org/
# 3 https://overpass-turbo.eu/
#
# Note: we only support segments and therefore way tags for now
# https://wiki.openstreetmap.org/wiki/Key:highway
# https://taginfo.openstreetmap.org/keys/?key=highway#values
highway = [
"residential",
"service",
"track",
"unclassified",
"footway",
"path",
"tertiary",
"secondary",
"primary",
"trunk",
"living_street",
"cycleway",
"steps",
"motorway",
"motorway_link",
"pedestrian",
"trunk_link",
"primary_link",
"secondary_link",
"road",
"construction",
"tertiary_link",
"proposed",
]
# https://wiki.openstreetmap.org/wiki/Key:junction
# https://taginfo.openstreetmap.org/keys/?key=junction#values
junction = [
"roundabout",
"circular",
]
# https://wiki.openstreetmap.org/wiki/Key:surface
# https://taginfo.openstreetmap.org/keys/?key=surface#values
surface = [
"asphalt",
"unpaved",
"paved",
"ground",
"gravel",
"concrete",
"paving_stones",
"dirt",
"grass",
"compacted",
"sand",
"cobblestone",
"fine_gravel",
"sett",
]
# https://wiki.openstreetmap.org/wiki/Key:smoothness
# https://taginfo.openstreetmap.org/keys/?key=smoothness#values
smoothness = [
"good",
"excellent",
"intermediate",
"bad",
"very_bad",
"horrible",
"very_horrible",
"impassable",
"very_good",
]
# https://wiki.openstreetmap.org/wiki/Key:width
# https://taginfo.openstreetmap.org/keys/width#values
width = ["*"]
# https://wiki.openstreetmap.org/wiki/Key:maxwidth
# https://taginfo.openstreetmap.org/keys/maxwidth#values
maxwidth = ["*"]
# https://wiki.openstreetmap.org/wiki/Key:lanes
# https://taginfo.openstreetmap.org/keys/lanes#values
lanes = ["*"]
# https://wiki.openstreetmap.org/wiki/Key:lane_markings
# https://taginfo.openstreetmap.org/keys/?key=lane_markings#values
lane_markings = [
"yes",
"no"
]
# https://wiki.openstreetmap.org/wiki/Key:maxspeed
# https://taginfo.openstreetmap.org/keys/maxspeed#values
maxspeed = ["*"]
# https://wiki.openstreetmap.org/wiki/Key:minspeed
# https://taginfo.openstreetmap.org/keys/?key=minspeed#values
minspeed = ["*"]
# https://wiki.openstreetmap.org/wiki/Key:oneway
# https://taginfo.openstreetmap.org/keys/?key=oneway#values
oneway = [
"yes",
"no",
"-1",
"1",
"reversible",
"alternating"
]
# https://wiki.openstreetmap.org/wiki/Key:overtaking
# https://taginfo.openstreetmap.org/keys/?key=overtaking#values
overtaking = [
"yes",
"no",
"forward",
"backward",
"both",
"caution"
]