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