]> git.openstreetmap.org Git - rails.git/blob - public/potlatch2/map_features/paths.xml
Update Potlatch 2 to 2.2-41-gec89ae9 build
[rails.git] / public / potlatch2 / map_features / paths.xml
1 <featureGroup>
2   <feature name="Footpath">
3     <category>paths</category>
4     <icon image="features/paths__footway.png">
5       ${name} <i>${ref}</i>
6     </icon>
7     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway</help>
8     <line/>
9     <tag k="highway" v="footway"/>
10     <inputSet ref="path"/>
11     <inputSet ref="common"/>
12   </feature>
13
14   <feature name="Cycle path">
15     <category>paths</category>
16     <icon image="features/paths__bike.png">
17       ${name} <i>${ncn_ref} ${rcn_ref} ${lcn_ref} ${ref}</i>
18     </icon>
19     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dcycleway</help>
20     <line/>
21     <tag k="highway" v="cycleway"/>
22     <inputSet ref="path"/>
23     <inputSet ref="common"/>
24     <input type="choice" name="Cycleway type" category="Cycle" description="What kind of bike path is this?" key="segregated" presence="onTagMatch" priority="low"> 
25        <choice value="yes" text="Segregated" description="Cyclists and pedestrians are separated by a painted line or kerb." /> 
26        <choice value="no" text="Shared" description="Cyclists and pedestrians share the full width of the path." /> 
27     </input> 
28   </feature>
29
30   <feature name="Pedestrian street">
31     <category>paths</category>
32     <icon image="features/paths__pedestrian.png">
33       <font size="14pt">
34         <b>${name}</b>
35       </font>
36     </icon>
37
38     <tag k="highway" v="pedestrian"/>
39     <!-- pedestrian roads can be lines or areas, with different tags -->
40     <!-- TODO - implement this! -->
41     <line>
42       <tag k="highway" v="pedestrian"/>
43     </line>
44     <area>
45       <tag k="highway" v="pedestrian"/>
46       <tag k="area" v="yes"/>
47     </area>
48     <inputSet ref="minorRoad"/>
49     <inputSet ref="common"/>
50   </feature>
51
52   <feature name="Bridleway">
53     <category>paths</category>
54     <icon image="features/paths__bridleway.png">
55     </icon>
56
57     <line/>
58     <tag k="highway" v="bridleway"/>
59     <inputSet ref="path"/>
60     <inputSet ref="common"/>
61   </feature>
62
63   <feature name="Steps">
64     <category>paths</category>
65     <icon image="features/paths__steps.png">
66     </icon>
67     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsteps</help>
68
69     <line/>
70     <tag k="highway" v="steps"/>
71     <inputSet ref="path"/>
72     <input type="freetext" presence="always" category="Naming" name="Number of steps" key="step_count" description="The number of steps in the way" priority="low"/>
73     <inputSet ref="common"/>
74   </feature>
75   
76   <feature name="Generic path">
77     <category>paths</category>
78     <icon image="features/paths__unofficial.png">
79       ${name} <i>${ncn_ref} ${rcn_ref} ${lcn_ref} ${ref}</i>
80     </icon>
81     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath</help>
82
83     <line/>
84     <tag k="highway" v="path"/>
85     <inputSet ref="path"/>
86     <inputSet ref="common"/>
87   </feature>
88
89   
90   <!-- Bicycle routes -->
91   <feature name="National Cycle Network">
92     <category>paths</category>
93     <icon image="features/route__ncn.png" background="red" foreground="white">
94       <font size="14pt">
95         <b>${ref}</b>
96       </font>
97       <br/>
98       <font size="12pt">${name}</font>
99     </icon>
100
101     <relation/>
102     <tag k="type" v="route"/>
103     <tag k="route" v="bicycle"/>
104     <tag k="network" v="ncn"/>
105
106     <inputSet ref="route"/>
107     <inputSet ref="common"/>
108   </feature>
109
110
111   <feature name="Regional Cycle Network">
112     <category>paths</category>
113     <icon image="features/route__rcn.png" background="cyan" foreground="white">
114       <font size="14pt"><b>${ref}</b></font><br/>
115       <font size="12pt">${name}</font>
116     </icon>
117
118     <relation/>
119     <tag k="type" v="route"/>
120     <tag k="route" v="bicycle"/>
121     <tag k="network" v="rcn"/>
122
123     <inputSet ref="route"/>
124     <inputSet ref="common"/>
125   </feature>
126
127
128   <feature name="Local Cycle Network">
129     <category>paths</category>
130     <icon image="features/route__lcn.png" background="blue" foreground="white">
131       <font size="14pt">
132         <b>${ref}</b>
133       </font>
134       <br/>
135       <font size="12pt">${name}</font>
136     </icon>
137
138     <relation/>
139     <tag k="type" v="route"/>
140     <tag k="route" v="bicycle"/>
141     <tag k="network" v="lcn"/>
142
143     <inputSet ref="route"/>
144     <inputSet ref="common"/>
145   </feature>
146   
147   <!-- hiking -->
148   
149   <feature name="Long Distance Path">
150     <category>paths</category>
151     <icon image="features/route__nwn.png" background="green" foreground="white">
152       <font size="14pt">
153         <b>${ref}</b>
154       </font>
155       <br/>
156       <font size="12pt">${name}</font>
157     </icon>
158
159     <relation/>
160     <tag k="type" v="route"/>
161     <tag k="route" v="hiking" vmatch="hiking|foot"/>
162
163     <inputSet ref="route"/>
164     <inputSet ref="common"/>
165   </feature>
166   
167 </featureGroup>