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