]> git.openstreetmap.org Git - rails.git/blob - public/potlatch2/map_features.xml
Update Potlatch 2 to r24796 build
[rails.git] / public / potlatch2 / map_features.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Quick documentation:
4
5 <category> the categories that features belong to. This includes both nodes (icons on left) and ways/areas (drop-down list that appears when a way/area is selected)
6   name: Shown in GUI
7   id: internal reference (a feature refers to this with category=xxx)
8
9 <feature> a pre-defined group of tags that make up a feature
10   category: [ctext] corresponding to category id
11   icon
12     @image: path to .png file
13     @background: colour spec
14     @foreground: colour spec
15     (general html goes here?) Variables substituted with ${ref}
16   help: [ctext] URL, shown as a linked ? icon. Should (?) usually be an OSM wiki page.
17   description: Not currently used?
18   line/point/area: any or all of these are allowed. Determines whether this feature is shown in the corresponding situations. None is equivalent to all three.
19   tag - one or more of these required, defines the tags that make up the feature.
20     @k - key
21     @v - value
22   input
23     @ref=xxx
24   inputSet
25     @ref=xxx
26 </feature>
27
28 <inputSet>: a reusable group of properties for a feature.
29   @id="internal id"
30   input...
31 </inputSet>
32
33 <input>
34   @type: choice/freetext/turn/checkbox/slider/route/speed/number - the different types of supported input dialogs.
35   @presence: always/onTagMatch/withCategory - Whether it always appears on the basic page, appears only when the tag is already set, or only ever show on the category page.
36   @category: which tab it appears on
37   @description: mouse-over text
38   @name: The text shown as the label of the property
39   @key: The actual OSM key (tag) that will be saved
40   @priority: highest/high/normal/low/lowest (default=>normal) - controls the order that different features show up in a panel.
41   match: for turn|route inputs, the tags to be considered on the relation as indicating a match.
42     @k: key
43     @v: value
44   icon: see above
45 -->
46
47 <mapFeatures>
48
49   <!-- Categories -->
50
51   <category name="Roads" id="roads">
52   </category>
53
54   <category name="Paths" id="paths">
55   </category>
56
57   <category name="Shopping" id="shopping">
58   </category>
59
60   <category name="Food and Drink" id="foodanddrink">
61   </category>
62
63   <category name="Amenity" id="amenity">
64   </category>
65
66   <category name="Tourism" id="tourism">
67   </category>
68
69   <category name="Accommodation" id="accommodation">
70   </category>
71
72   <category name="Transport" id="transport">
73   </category>
74
75   <category name="Water" id="water">
76   </category>
77
78   <category name="Natural" id="natural">
79   </category>
80
81   <category name="Barrier" id="barrier">
82   </category>
83
84   <category name="Power" id="power">
85   </category>
86
87   <category name="Admin" id="admin">
88   </category>
89
90   <category name="Buildings" id="buildings">
91   </category>
92
93   <category name="Landuse" id="landuse">
94   </category>
95
96   <category name="Agriculture" id="agriculture">
97   </category>
98
99   <category name="Advanced" id="advanced">
100   </category>
101
102   <category name="Places" id="places">
103   </category>
104
105   <!-- Common input sets -->
106
107   <inputSet id="simpleName">
108     <input type="freetext" presence="always" name="Name" key="name" description="The name" priority="highest"/>
109   </inputSet>
110
111   <inputSet id="source">
112     <input type="freetext" category="Misc" presence="onTagMatch" name="Source" key="source" description="The primary source of information for this object (GPS, survey, Yahoo, ...)" priority="lowest"/>
113   </inputSet>
114
115   <inputSet id="common">
116     <inputSet ref="source"/>
117   </inputSet>
118
119   <inputSet id="names">
120     <input type="freetext" presence="always"
121         name="Name" category="Naming" priority="highest"
122         key="name" description="The most common name"/>
123     <input type="freetext" presence="onTagMatch"
124         name="International Name" category="Naming"
125         key="int_name" description="The internationally recognised name"/>
126     <input type="freetext" presence="onTagMatch"
127         name="Historical Name" category="Naming" priority="low"
128         key="old_name" description="The historic or previous name"/>
129   </inputSet>
130
131   <inputSet id="wifi">
132     <input type="choice" presence="onTagMatch" category="Eating" name="Wifi" key="wifi">
133       <choice value="free" text="Free"/>
134       <choice value="yes" text="Yes"/>
135       <choice value="no" text="No"/>
136     </input>
137   </inputSet>
138
139   <inputSet id="buildingAddress">
140     <input type="freetext" presence="onTagMatch" category="Address" description="The number of the house, e.g. 156 or 10-12" name="House Number" key="addr:housenumber"/>
141     <input type="freetext" presence="onTagMatch" category="Address" description="The name of the house, e.g. Riverbank Cottage" name="Building Name" key="addr:housename"/>
142     <input type="freetext" presence="onTagMatch" category="Address" description="The Street Name (optional)" name="Street Name" key="addr:street"/>
143     <input type="freetext" presence="onTagMatch" category="Address" description="The postcode" name="Postcode" key="addr:postcode"/>
144   </inputSet>
145
146   <inputSet id="web">
147     <input type="freetext" presence="onTagMatch" category="Web" description="The URL of the website" name="Website" key="website"/>
148   </inputSet>
149
150   <inputSet id="cuisine">
151     <input type="choice" presence="always" name="Cuisine" category="Eating" description="The type of food that they serve" key="cuisine">
152       <choice value="burger" text="Burger"/>
153       <choice value="chicken" text="Chicken"/>
154       <choice value="chinese" text="Chinese"/>
155       <choice value="coffee_shop" text="Coffee Shop"/>
156       <choice value="greek" text="Greek"/>
157       <choice value="pizza" text="Pizza"/>
158       <choice value="sandwich" text="Sandwich"/>
159       <choice value="sea_food" text="Sea Food"/>
160       <help>http://wiki.openstreetmap.org/wiki/Key:cuisine</help>
161     </input>
162   </inputSet>
163
164   <!-- Roads -->
165
166   <inputSet id="majorRoad">
167     <inputSet ref="names"/>
168     <inputSet ref="roadRefs"/>
169     <inputSet ref="roadRestrictions"/>
170     <inputSet ref="roadPhysical"/>
171     <inputSet ref="cycle"/>
172     <inputSet ref="bicycle-lane"/>
173     <inputSet ref="bus-route"/>
174     <inputSet ref="pedestrians"/>
175     <inputSet ref="roadLanes"/>
176     <inputSet ref="roadRoundabout"/>
177     <inputSet ref="permissions"/>
178   </inputSet>
179
180   <inputSet id="minorRoad">
181     <inputSet ref="names"/>
182     <inputSet ref="roadRestrictions"/>
183     <inputSet ref="roadPhysical"/>
184     <inputSet ref="cycle"/>
185     <inputSet ref="bicycle-lane"/>
186     <inputSet ref="bus-route"/>
187     <inputSet ref="pedestrians"/>
188     <inputSet ref="roadLanes"/>
189     <inputSet ref="roadRoundabout"/>
190     <inputSet ref="permissions"/>
191   </inputSet>
192
193   <inputSet id="path">
194     <inputSet ref="simpleName"/>
195     <inputSet ref="roadPhysical"/>
196     <inputSet ref="cycle"/>
197     <inputSet ref="ldp"/>
198     <inputSet ref="pedestrians"/>
199     <inputSet ref="permissions"/>
200   </inputSet>
201
202   <inputSet id="junctionNode">
203     <inputSet ref="turnRestrictions"/>
204   </inputSet>
205
206   <inputSet id="roadRefs">
207     <input type="freetext" presence="always"
208         name="Reference" category="Naming" priority="high"
209         key="ref" description="The official reference number"/>
210     <input type="freetext" presence="onTagMatch"
211         name="International Reference" category="Naming"
212         key="int_ref" description="The official international reference number"/>
213     <input type="freetext" presence="onTagMatch"
214         name="Old Reference" category="Naming" priority="low"
215         key="old_ref" description="The historic or previous reference number"/>
216   </inputSet>
217
218   <inputSet id="roadPhysical">
219     <input type="freetext" presence="onTagMatch"
220         name="Width" category="Physical"
221         key="width" description="Width of the road" layout="horizontal"/>
222     <input type="choice" presence="onTagMatch"
223         name="Surface" category="Physical" description="Type of road surface"
224         key="surface" layout="horizontal">
225       <choice value="unpaved" text="Unpaved" description="Road surface is unsealed"/>
226       <choice value="paved" text="Paved" description="Road surface is sealed"/>
227       <choice value="asphalt" text="Asphalt"/>
228       <choice value="concrete" text="Concrete"/>
229       <choice value="paving_stones" text="Paving stones"/>
230       <choice value="cobblestone" text="Cobblestone"/>
231       <choice value="sand" text="Sand"/>
232       <choice value="gravel" text="Gravel"/>
233       <choice value="dirt" text="Dirt"/>
234       <choice value="grass" text="Grass"/>
235     </input>
236     <inputSet ref="bridge"/>
237     <inputSet ref="tunnel"/>
238     <inputSet ref="embankment-cutting"/>
239     <!-- not sure which category best suits put area=yes -->
240     <input type="checkbox" presence="onTagMatch" category="Restrictions" key="area" name="Open area" description="The way is a large open space, like at a dock, where vehicles can move anywhere within the space, rather than just along the edge." />
241   </inputSet>
242
243   <inputSet id="roadLanes">
244     <input presence="onTagMatch" type="number" name="Lanes" category="Physical" description="Total number of lanes, counting both directions"
245            key="lanes" minimum="1" maximum="10" layout="horizontal"/>
246   </inputSet>
247
248   <inputSet id="bridge">
249     <input type="choice" presence="onTagMatch"
250         name="Bridge" category="Physical" description="Road goes over a bridge"
251         key="bridge" layout="horizontal">
252       <choice value="yes" text="Generic Bridge" description="Generic bridge -- type unknown"/>
253       <choice value="viaduct" text="Viaduct" description="Viaduct"/>
254       <choice value="suspension" text="Suspension bridge"/>
255     </input>
256     <input type="slider" presence="onTagMatch"
257         name="Layer" category="Physical" description="Relative vertical positions (-5 lowest, +5 highest)"
258         key="layer" minimum="-5" maximum="5" default="0" snapInterval="1" labels="Lowest,Ground,Highest"
259         defaultName="Ground"/>
260   </inputSet>
261   <inputSet id="tunnel">
262     <!-- Not ideal, used for non-roads too. -->  
263     <input type="choice" presence="onTagMatch"
264         name="Tunnel" category="Physical" description="Road goes into a tunnel"
265         key="tunnel" layout="horizontal">
266       <choice value="yes" text="Tunnel" description="Generic tunnel"/>
267     </input>
268   </inputSet>
269
270   <inputSet id="embankment-cutting">
271     <input type="choice"
272            name="Embankment" category="Physical" description="Road supported on a raised bed of earth and rock."
273            key="embankment" layout="horizontal">
274       <choice value="yes" text="Embankment"/>
275     </input>
276     <input type="choice"
277            name="Cutting" category="Physical" description="Road carved out of hill on one or both sides."
278            key="cutting" layout="horizontal">
279       <choice value="yes" text="Cutting"/>
280     </input>
281
282   </inputSet>
283
284   <inputSet id="rail-electrification">
285     <input type="choice" name="Electrified" category="Electrification" description="Is the track electrified (whether by 3rd rail, overhead wires, etc)?"
286            key="electrified">
287       <choice value="yes" text="Yes"/>
288       <choice value="no" text="No"/>
289     </input>
290     <input type="choice" name="Voltage" category="Electrification" description="Nominal voltage of electric wires"
291            key="voltage" presence="withCategory">
292       <choice value="600" text="600V"/>
293       <choice value="750" text="750V"/>
294       <choice value="1500" text="1500V"/>
295       <choice value="3000" text="3000V"/>
296       <choice value="15000" text="15kV"/>
297       <choice value="25000" text="25kV"/>
298     </input>
299     <input type="choice" name="Frequency" category="Electrification" description="Frequency in Hertz of alternating current power supply"
300            key="frequency" presence="withCategory">
301       <choice value="0" text="DC"/>
302       <choice value="16.67" text="16.67 Hz"/>
303       <choice value="16.7" text="16.7 Hz"/>
304       <choice value="25" text="25 Hz"/>
305       <choice value="50" text="50 Hz"/>
306       <choice value="60" text="60 Hz"/>
307     </input>
308   </inputSet>
309
310   <inputSet id="rail-usage">
311     <input type="choice" name="Usage" category="Usage" description="Main use of the line" key="usage">
312       <choice value="main" text="Main line" description="The principal artery of a rail system."/>
313       <choice value="branch" text="Branch line" description="A secondary line, branching off a main line."/>
314       <choice value="industrial" text="Industrial"/>
315       <choice value="tourism" text="Tourism" />
316       <choice value="military" text="Military"/>
317     </input>
318   </inputSet>
319
320   <inputSet id="fee">
321     <input type="freetext" presence="onTagMatch" category="Restrictions" description="The charge/cost of using this amenity" name="Fee" key="fee"/>
322   </inputSet>
323
324   <inputSet id="roadRestrictions">
325     <input type="choice" presence="always"
326         name="Oneway" category="Restrictions" description="Oneway roads"
327         key="oneway">
328       <choice value="yes" match="yes|true|1" text="One way"
329         description="Road can only be travelled in direction of way" icon="features/oneway__yes.png"/>
330       <choice value="no" match="no|false|0" text="Two way"
331         description="Road can be travelled in both directions" icon="features/oneway__no.png"/>
332       <choice value="-1" match="-1|reverse" text="One way reverse"
333         description="Road can be travelled in opposite direction to way" icon="features/oneway__-1.png"/>
334     </input>
335     <input type="speed" presence="onTagMatch"
336         name="Speed Limit" category="Restrictions" description="Maximum permitted speed on this road"
337         key="maxspeed"/>
338   </inputSet>
339
340   <inputSet id="roadRoundabout">
341     <!-- review the choice of category -->
342     <input type="choice" presence="onTagMatch" name="Roundabout" category="Restrictions" description="Whether this road is a roundabout. Make the way face the direction appropriate for the country."
343            key="junction">
344       <choice value="roundabout" text="Yes"/>
345     </input>
346   </inputSet>
347
348   <inputSet id="turnRestrictions">
349     <input type="turn" name="Turn restriction" description="Turn restriction" category="Restrictions" priority="normal" presence="onTagMatch">
350       <match k="type" v="restriction"/>
351       <role role="via"/>
352     </input>
353   </inputSet>
354
355   <inputSet id="pedestrians">
356     <input type="choice" name="Pedestrians" description="Can pedestrians use this road, including footpaths if any?" category="Walking" key="foot">
357       <choice value="yes" text="Allowed"/>
358       <choice value="no" text="Prohibited"/>
359       <choice value="designated" text="Designated"/>
360     </input>
361   </inputSet>
362
363   <inputSet id="naptan">
364     <input type="freetext" presence="onTagMatch" category="Naptan" description="12 character internal Naptan ID" name="Atco Code" key="naptan:AtcoCode"/>
365     <input type="choice" presence="onTagMatch" category="Naptan" description="The eight-point compass bearning" name="Naptan Bearing" key="naptan:Bearing" >
366       <choice value="N"  match="N"  text="N"  description=""/>
367       <choice value="NE" match="NE" text="NE" description=""/>
368       <choice value="E"  match="E"  text="E"  description=""/>
369       <choice value="SE" match="SE" text="SE" description=""/>
370       <choice value="S"  match="S"  text="S"  description=""/>
371       <choice value="SW" match="SW" text="SW" description=""/>
372       <choice value="W"  match="W"  text="W"  description=""/>
373       <choice value="NW" match="NW" text="NW" description=""/>
374     </input>
375     <input type="freetext" presence="onTagMatch" category="Naptan" description="The naptan common name" name="Naptan Common Name (read-only)" key="naptan:CommonName"/>
376     <input type="freetext" presence="onTagMatch" category="Naptan" description="" name="Naptan Indicator (read-only)" key="naptan:Indicator"/>
377     <input type="freetext" presence="onTagMatch" category="Naptan" description="" name="Naptan Street (read-only)" key="naptan:Street"/>
378     <input type="freetext" presence="onTagMatch" category="Naptan" description="Delete this when the details have been verified on-the-ground" name="Naptan Verified?" key="naptan:verified"/>
379   </inputSet>
380
381   <inputSet id="buses">
382     <input type="freetext" presence="always" category="Bus Stop" name="Stop Name" key="name" description="The name of the bus stop"/>
383     <input type="freetext" presence="always" category="Bus Stop" name="Local Ref" key="local_ref" description="The local reference of the stop, usually one or two letters above the main flag, used at bus interchanges, e.g. L, BX"/>
384     <inputSet ref="naptan"/>
385   </inputSet>
386
387   <inputSet id="bus-route">
388     <input type="route" name="Bus Route" description="Bus route" category="Transport" priority="low" presence="onTagMatch">
389       <match k="type" v="route"/>
390       <match k="route" v="bus"/>
391       <icon image="features/transport__bus.png">
392         <font size="12pt">${operator} <b>${ref}</b></font>
393       </icon>
394     </input>
395   </inputSet>
396
397   <inputSet id="tram-route">
398     <input type="route" name="Tram Route" description="Tram route" category="Transport" priority="low" presence="onTagMatch">
399       <match k="type" v="route"/>
400       <match k="route" v="tram"/>
401       <icon image="features/transport__tram.png">
402         <font size="12pt">${operator} <b>${ref}</b></font>
403       </icon>
404     </input>
405   </inputSet>
406
407   <inputSet id="cycle">
408     <inputSet ref="bicycle-permission"/>
409     <input type="route" name="National Cycle Routes" description="A signposted route in a National Cycle Network, or nearest equivalent." category="Cycle" priority="low">
410       <match k="type" v="route"/>
411       <match k="route" v="bicycle"/>
412       <match k="network" v="ncn"/>
413       <icon image="features/cycle__ncn.png" background="#ff6f7a" foreground="white">
414         <font size="14pt"><b>${ref}</b></font><br/>
415         <font size="12pt">${name}</font>
416       </icon>
417     </input>
418     <input type="route" name="Regional Cycle Routes" description="A signposted route in a Regional Cycle Network, or nearest equivalent." category="Cycle" priority="low">
419       <match k="type" v="route"/>
420       <match k="route" v="bicycle"/>
421       <match k="network" v="rcn"/>
422       <icon image="features/cycle__rcn.png" background="#6ff7ff" foreground="white">
423         <font size="14pt"><b>${ref}</b></font><br/>
424         <font size="12pt">${name}</font>
425       </icon>
426     </input>
427     <input type="route" name="Local Cycle Routes" description="A signposted route in a Local Cycle Network, or nearest equivalent." category="Cycle" priority="lowest">
428       <match k="type" v="route"/>
429       <match k="route" v="bicycle"/>
430       <match k="network" v="lcn"/>
431       <icon image="features/cycle__lcn.png" background="#7d6fff" foreground="white">
432         <font size="14pt"><b>${ref}</b></font><br/>
433         <font size="12pt">${name}</font>
434       </icon>
435     </input>
436   </inputSet>
437
438   <inputSet id="bicycle-permission">
439     <input type="choice"
440            name="Bicycles permitted" category="Cycle" description="Are bicyles allowed to use this road (regardless of physical suitability)?"
441            key="bicycle">
442       <choice value="no" text="Prohibited" desciption="Cycling is not allowed. Pushing your bicycle is not allowed either."/>
443       <choice value="yes" text="Allowed"/>
444       <choice value="dismount" text="Cyclists dismount" description="Signage states that cyclists should dismount and push their bike for the selected path or road."/>
445       <choice value="designated" text="Designated"/>
446       <choice value="private" text="Private"/>
447       <help>http://wiki.openstreetmap.org/wiki/Key:access</help>
448     </input>
449   </inputSet>
450
451   <inputSet id="bicycle-lane">
452     <input type="choice"
453         name="Bike lanes" category="Cycle" description="Road has bike lanes within the road surface"
454         key="cycleway" layout="horizontal">
455       <choice value="no" text="No bike lanes"/>
456       <choice value="lane" text="On-road bike lane" description="Separated by painted line on the road from cars"/>
457       <choice value="track" text="Parallel track" description="Separated by kerb or parked cars"/>
458       <choice value="opposite_lane" text="Contraflow lane" description="Separated by painted line, and allowing bicycles in both directions in an otherwise one-way street."/>
459       <choice value="opposite_track" text="Contraflow track" description="Separated by kerb or parked cars, and allowing bicycles in both directions in an otherwise one-way street."/>
460       <choice value="opposite" text="Contraflow unmarked" description="The route may be cycled in the direction opposite of other traffic, but does not have a dedicated lane."/>
461       <choice value="segregated" text="Segregated cycle path" description="A path where cyclists and pedestrians are separated by a painted line or kerb."/>
462       <choice value="shared" text="Shared cycle path" description="A path where cyclists and pedestrians share the full width of the path."/>
463       <help>http://wiki.openstreetmap.org/wiki/Key:cycleway</help>
464     </input>
465   </inputSet>
466
467   <inputSet id="ldp">
468     <input type="route" name="National Walking Route" description="National walking route" category="Walking" priority="normal">
469       <match k="type" v="route"/>
470       <match k="network" v="nwn"/>
471       <icon background="red" foreground="white">
472         <font size="14pt"><b>${ref}</b></font><br/>
473         <font size="12pt">${name}</font>
474       </icon>
475     </input>
476     <input type="route" name="Regional Walking Route" description="Regional walking route" category="Walking" priority="low">
477       <match k="type" v="route"/>
478       <match k="network" v="rwn"/>
479       <icon background="cyan" foreground="white">
480         <font size="14pt"><b>${ref}</b></font><br/>
481         <font size="12pt">${name}</font>
482       </icon>
483     </input>
484     <input type="route" name="Local Walking Route" description="Local walking route" category="Walking" priority="lowest">
485       <match k="type" v="route"/>
486       <match k="network" v="lwn"/>
487       <icon background="blue" foreground="white">
488         <font size="14pt"><b>${ref}</b></font><br/>
489         <font size="12pt">${name}</font>
490       </icon>
491     </input>
492   </inputSet>
493
494   <inputSet id="route">
495     <inputSet ref="names"/>
496     <inputSet ref="roadRefs"/>
497   </inputSet>
498
499   <inputSet id="waterways">
500     <input type="freetext" presence="always" name="Name" category="Naming" key="name" description="The name"/>
501     <input type="freetext" presence="always" name="Width" category="Properties" key="width" description="The width in metres"/>
502     <inputSet ref="boatPermissions"/>
503   </inputSet>
504 <!-- Would be good to have a dedicated 'access' type of input -->
505   <!-- all the description fields are identical at the moment for ease of maintenance, should be tailored in future. -->
506   <inputSet id="boatPermissions">
507     <input type="choice" name="Boat permission" category="Permission" key="boat" description="Are boats allowed to use this waterway?">
508       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
509       <choice value="yes" text="Allowed" description="General right of way."/>
510       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
511       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
512       <choice value="no" text="Prohibited" description="No access to the public."/>
513     </input>
514   </inputSet>
515
516   <inputSet id="permissions">
517     <input type="choice" name="General access" category="Permission" key="access" description="Is there a general right of access, regardless of mode of transport?">
518       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
519       <choice value="yes" text="Allowed" description="General right of way."/>
520       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
521       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
522       <choice value="no" text="Prohibited" description="No access to the public."/>
523     </input>
524
525     <input type="choice" name="Motor vehicles" category="Permission" key="motor_vehicle" description="Are cars and other private vehicles allowed?">
526       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
527       <choice value="yes" text="Allowed" description="General right of way."/>
528       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
529       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
530       <choice value="no" text="Prohibited" description="No access to the public."/>
531     </input>
532
533     <input type="choice" name="Horses" category="Permission" key="horse" description="Are cars and other private vehicles allowed?">
534       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
535       <choice value="yes" text="Allowed" description="General right of way."/>
536       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
537       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
538       <choice value="no" text="Prohibited" description="No access to the public."/>
539     </input>
540
541   </inputSet>
542
543   <inputSet id="places">
544     <input type="choice" name="Type of Place" presence="always" key="place">
545       <choice value="locality" text="Locality"/>
546       <choice value="hamlet" text="Hamlet"/>
547       <choice value="village" text="Village"/>
548       <choice value="suburb" text="Suburb"/>
549       <choice value="town" text="Town"/>
550       <choice value="city" text="City"/>
551       <choice value="county" text="County"/>
552       <choice value="region" text="Region"/>
553       <choice value="state" text="State"/>
554       <choice value="country" text="Country"/>
555       <choice value="continent" text="Continent"/>
556       <choice value="island" text="Island"/>
557       <choice value="islet" text="Islet"/>
558     </input>
559   </inputSet>
560
561   <!-- ************************************************************************
562        Roads
563        ************************************************************************ -->
564
565   <feature name="Motorway">
566     <category>roads</category>
567     <icon image="features/highway__motorway.png">
568       <font size="16pt"><b>${ref}</b></font><br/>
569     </icon>
570     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dmotorway</help>
571
572     <line/>
573     <tag k="highway" v="motorway"/>
574
575     <inputSet ref="majorRoad"/>
576     <inputSet ref="common"/>
577   </feature>
578
579   <feature name="Motorway link">
580     <category>roads</category>
581     <icon image="features/highway__motorway_link.png"/>
582     <line/>
583     <tag k="highway" v="motorway_link"/>
584
585     <inputSet ref="majorRoad"/>
586     <inputSet ref="common"/>
587   </feature>
588
589   <feature name="Trunk road">
590     <category>roads</category>
591     <icon image="features/highway__trunk.png">
592       <font size="16pt"><b>${ref}</b></font><br/>
593       <font size="10pt">${name}</font>
594     </icon>
595     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrunk</help>
596
597     <line/>
598     <tag k="highway" v="trunk"/>
599
600     <inputSet ref="majorRoad"/>
601     <inputSet ref="common"/>
602   </feature>
603
604   <feature name="Trunk link">
605     <category>roads</category>
606     <icon image="features/highway__trunk_link.png"/>
607     <line/>
608     <tag k="highway" v="trunk_link"/>
609
610     <inputSet ref="majorRoad"/>
611     <inputSet ref="common"/>
612   </feature>
613
614   <feature name="Primary road">
615     <category>roads</category>
616     <icon image="features/highway__primary.png">
617       <font size="16pt"><b>${ref}</b></font><br/>
618       <font size="10pt">${name}</font>
619     </icon>
620     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary</help>
621
622     <line/>
623     <tag k="highway" v="primary"/>
624
625     <inputSet ref="majorRoad"/>
626     <inputSet ref="common"/>
627   </feature>
628
629   <feature name="Primary link">
630     <category>roads</category>
631     <icon image="features/highway__primary_link.png">
632       <font size="16pt"><b>${ref}</b></font><br/>
633       <font size="10pt">${name}</font>
634     </icon>
635     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary_link</help>
636
637     <line/>
638     <tag k="highway" v="primary_link"/>
639
640     <inputSet ref="majorRoad"/>
641     <inputSet ref="common"/>
642   </feature>
643
644
645   <feature name="Secondary road">
646     <category>roads</category>
647     <icon image="features/highway__secondary.png">
648       <font size="16pt"><b>${ref}</b></font><br/>
649       <font size="10pt">${name}</font>
650     </icon>
651     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary</help>
652
653     <line/>
654     <tag k="highway" v="secondary"/>
655
656     <inputSet ref="majorRoad"/>
657     <inputSet ref="common"/>
658   </feature>
659
660   <feature name="Secondary link">
661     <category>roads</category>
662     <icon image="features/highway__secondary_link.png">
663       <font size="16pt">
664         <b>${ref}</b>
665       </font>
666       <br/>
667       <font size="10pt">${name}</font>
668     </icon>
669     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary_link</help>
670
671     <line/>
672     <tag k="highway" v="secondary_link"/>
673
674     <inputSet ref="majorRoad"/>
675     <inputSet ref="common"/>
676   </feature>
677
678
679
680   <feature name="Tertiary road">
681     <category>roads</category>
682     <icon image="features/highway__tertiary.png">
683       <font size="14pt"><b>${name}</b></font><br/>
684       <font size="10pt">${ref}</font>
685     </icon>
686     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary</help>
687
688     <line/>
689     <tag k="highway" v="tertiary"/>
690
691     <inputSet ref="majorRoad"/>
692     <inputSet ref="common"/>
693   </feature>
694
695   <feature name="Tertiary link">
696     <category>roads</category>
697     <icon image="features/highway__tertiary_link.png">
698       <font size="14pt"><b>${name}</b></font><br/>
699       <font size="10pt">${ref}</font>
700     </icon>
701     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary_link</help>
702
703     <line/>
704     <tag k="highway" v="tertiary_link"/>
705
706     <inputSet ref="majorRoad"/>
707     <inputSet ref="common"/>
708   </feature>
709
710
711   <feature name="Minor road">
712     <category>roads</category>
713     <icon image="features/highway__unclassified.png">
714       <font size="14pt"><b>${name}</b></font>
715     </icon>
716     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified</help>
717
718     <line/>
719     <tag k="highway" v="unclassified"/>
720
721     <inputSet ref="minorRoad"/>
722     <inputSet ref="common"/>
723   </feature>
724
725   <feature name="Residential road">
726     <category>roads</category>
727     <icon image="features/highway__residential.png">
728       <font size="14pt">
729         <b>${name}</b>
730       </font>
731       <br/>
732       <font size="8pt">${postal_code}</font>
733       <br/>
734     </icon>
735     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential</help>
736
737     <line/>
738     <tag k="highway" v="residential"/>
739
740     <inputSet ref="minorRoad"/>
741     <inputSet ref="common"/>
742   </feature>
743
744   <feature name="Service road">
745     <category>roads</category>
746     <icon image="features/highway__service.png">
747       <font size="14pt"><b>${name}</b></font>
748     </icon>
749     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dservice</help>
750     <description>
751       Access roads
752     </description>
753
754     <line/>
755     <tag k="highway" v="service"/>
756
757     <inputSet ref="minorRoad"/>
758     <input type="choice" presence="always" name="Type of service road" key="service" category="">
759       <choice value="alley" text="Alleyway/laneway"/>
760       <choice value="parking_aisle" text="Parking aisle" description="The path that cars drive on through a parking lot."/>
761       <choice value="driveway" text="Driveway"/>
762       <choice value="drive-through" text="Drive-through" description="For drive-through restaurants, bottle shops etc."/>
763       <choice value="emergency_access" text="Emergency access" description="For firefighters and other emergency services."/>
764     </input>
765     <inputSet ref="common"/>
766   </feature>
767
768   <feature name="Unknown road">
769     <category>roads</category>
770     <icon image="features/highway__unknown.png">
771       <font size="10pt">This road has not been given a specific type. It's a road, and that's all that's known.</font>
772     </icon>
773
774     <line/>
775     <tag k="highway" v="road"/>
776
777     <inputSet ref="minorRoad"/>
778     <inputSet ref="common"/>
779   </feature>
780
781   <feature name="Living Street">
782     <category>roads</category>
783     <icon image="features/highway__living_street.png">
784       <font size="14pt"><b>${name}</b></font>
785     </icon>
786     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street</help>
787
788     <line/>
789     <tag k="highway" v="living_street"/>
790
791     <inputSet ref="minorRoad"/>
792     <inputSet ref="common"/>
793   </feature>
794
795   <feature name="Track">
796     <category>roads</category>
797     <icon image="features/highway__track.png">
798       <font size="14pt"><b>${name}</b></font>
799     </icon>
800
801     <line/>
802     <tag k="highway" v="track"/>
803
804     <inputSet ref="path"/>
805     <inputSet ref="common"/>
806   </feature>
807
808
809   <!-- ************************************************************************
810        Paths
811        ************************************************************************ -->
812
813   <feature name="Footpath">
814     <category>paths</category>
815     <icon image="features/paths__footway.png">
816       ${name} <i>${ref}</i>
817     </icon>
818
819     <line/>
820     <tag k="highway" v="footway"/>
821     <inputSet ref="path"/>
822     <inputSet ref="common"/>
823   </feature>
824
825   <feature name="Cycle path">
826     <category>paths</category>
827     <icon image="features/paths__bike.png">
828       ${name} <i>${ncn_ref} ${rcn_ref} ${lcn_ref} ${ref}</i>
829     </icon>
830
831     <line/>
832     <tag k="highway" v="cycleway"/>
833     <inputSet ref="path"/>
834     <inputSet ref="common"/>
835   </feature>
836
837   <feature name="Pedestrian street">
838     <category>paths</category>
839     <icon image="features/paths__pedestrian.png">
840       <font size="14pt">
841         <b>${name}</b>
842       </font>
843     </icon>
844
845     <tag k="highway" v="pedestrian"/>
846     <!-- pedestrian roads can be lines or areas, with different tags -->
847     <!-- TODO - implement this! -->
848     <line>
849       <tag k="highway" v="pedestrian"/>
850     </line>
851     <area>
852       <tag k="highway" v="pedestrian"/>
853       <tag k="area" v="yes"/>
854     </area>
855     <inputSet ref="minorRoad"/>
856     <inputSet ref="common"/>
857   </feature>
858
859   <feature name="Bridleway">
860     <category>paths</category>
861     <icon image="features/paths__bridleway.png">
862     </icon>
863
864     <line/>
865     <tag k="highway" v="bridleway"/>
866     <inputSet ref="path"/>
867     <inputSet ref="common"/>
868   </feature>
869
870   <feature name="Steps">
871     <category>paths</category>
872     <icon image="features/paths__steps.png">
873     </icon>
874     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsteps</help>
875
876     <line/>
877     <tag k="highway" v="steps"/>
878     <inputSet ref="path"/>
879     <input type="freetext" presence="always" category="Naming" name="Number of steps" key="step_count" description="The number of steps in the way" priority="low"/>
880     <inputSet ref="common"/>
881   </feature>
882
883   <!-- ************************************************************************
884        Natural
885        ************************************************************************ -->
886
887   <feature name="Park">
888     <category>natural</category>
889     <icon image="icons/natural_blank.png">
890       <b>${name}</b>
891       <br/>
892     </icon>
893
894     <area/>
895     <tag k="leisure" v="park"/>
896     <inputSet ref="common"/>
897   </feature>
898
899   <feature name="Forest">
900     <category>natural</category>
901     <icon image="icons/natural_blank.png"/>
902
903     <area/>
904     <tag k="landuse" v="forest"/>
905     <inputSet ref="common"/>
906   </feature>
907
908   <feature name="Meadow">
909     <category>natural</category>
910     <icon image="icons/natural_blank.png"/>
911
912     <area/>
913     <tag k="landuse" v="meadow"/>
914     <inputSet ref="common"/>
915   </feature>
916
917
918   <!-- ************************************************************************
919        Barrier
920        ************************************************************************ -->
921
922   <feature name="Wall">
923     <category>barrier</category>
924     <icon image="features/barrier_generic.png"/>
925     <icon>
926     </icon>
927     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall</help>
928
929     <line/>
930     <tag k="barrier" v="wall"/>
931     <inputSet ref="common"/>
932   </feature>
933
934   <feature name="Ditch">
935     <category>barrier</category>
936     <icon image="features/barrier_generic.png"/>
937     <icon>
938     </icon>
939     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dditch</help>
940
941     <line/>
942     <tag k="barrier" v="ditch"/>
943     <inputSet ref="common"/>
944   </feature>
945
946   <feature name="Retaining wall">
947     <category>barrier</category>
948     <icon image="features/barrier_generic.png"/>
949     <icon>
950     </icon>
951     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall</help>
952
953     <line/>
954     <tag k="barrier" v="retaining_wall"/>
955     <inputSet ref="common"/>
956   </feature>
957
958   <feature name="City wall">
959     <category>barrier</category>
960     <icon image="features/barrier_generic.png"/>
961     <icon>
962     </icon>
963     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcity_wall</help>
964
965     <line/>
966     <tag k="barrier" v="city_wall"/>
967     <inputSet ref="common"/>
968   </feature>
969
970
971   <feature name="Fence">
972     <category>barrier</category>
973     <icon image="features/barrier_generic.png"/>
974     <icon>
975     </icon>
976     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dfence</help>
977
978     <line/>
979     <tag k="barrier" v="fence"/>
980     <inputSet ref="common"/>
981   </feature>
982
983
984   <feature name="Hedge">
985     <category>barrier</category>
986     <icon image="features/barrier_generic.png"/>
987     <icon>
988     </icon>
989     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dhedge</help>
990
991     <line/>
992     <tag k="barrier" v="hedge"/>
993     <inputSet ref="common"/>
994   </feature>
995
996
997
998   <!-- ************************************************************************
999        Waterways
1000        ************************************************************************ -->
1001
1002   <feature name="Stream">
1003     <category>water</category>
1004     <description>A very narrow river.</description>
1005     <icon image="features/waterway__stream.png">
1006       <font size="14pt">
1007         <b>${name}</b>
1008       </font>
1009     </icon>
1010
1011     <line/>
1012     <tag k="waterway" v="stream"/>
1013     <inputSet ref="waterways"/>
1014     <inputSet ref="common"/>
1015   </feature>
1016
1017
1018   <feature name="River">
1019     <category>water</category>
1020     <icon image="features/waterway__river.png">
1021       <font size="14pt"><b>${name}</b></font>
1022     </icon>
1023
1024     <line/>
1025     <tag k="waterway" v="river"/>
1026     <inputSet ref="waterways"/>
1027     <inputSet ref="common"/>
1028   </feature>
1029
1030
1031   <feature name="Canal">
1032     <category>water</category>
1033     <icon image="features/waterway__canal.png">
1034       <font size="14pt">
1035         <b>${name}</b>
1036       </font>
1037     </icon>
1038
1039     <line/>
1040     <tag k="waterway" v="canal"/>
1041     <inputSet ref="waterways"/>
1042     <inputSet ref="tunnel"/>
1043     <inputSet ref="common"/>
1044   </feature>
1045
1046
1047   <feature name="Drain">
1048     <category>water</category>
1049     <icon image="features/waterway__drain.png">
1050       <font size="14pt"><b>${name}</b></font>
1051     </icon>
1052
1053     <line/>
1054     <tag k="waterway" v="drain"/>
1055     <inputSet ref="tunnel"/>
1056     <inputSet ref="common"/>
1057   </feature>
1058
1059
1060   <feature name="Dam">
1061     <!-- Moved to "barrier" because this describes the dam wall, not the water. -->
1062     <category>barrier</category>
1063     <icon image="features/waterway__dam.png">
1064       <font size="14pt">
1065         <b>${name}</b>
1066       </font>
1067     </icon>
1068
1069     <line/>
1070     <area/>
1071     <tag k="waterway" v="dam"/>
1072     <inputSet ref="common"/>
1073   </feature>
1074
1075
1076   <feature name="Riverbank">
1077     <category>water</category>
1078     <icon image="features/pois/water_generic.24.png">
1079       <font size="14pt"><b>${name}</b></font>
1080     </icon>
1081
1082     <area/>
1083     <tag k="waterway" v="riverbank"/>
1084     <inputSet ref="common"/>
1085   </feature>
1086
1087
1088   <feature name="Reservoir">
1089     <category>water</category>
1090     <icon image="features/pois/water_generic.24.png">
1091       <font size="14pt">
1092         <b>${name}</b>
1093       </font>
1094     </icon>
1095
1096     <area/>
1097     <tag k="landuse" v="reservoir"/>
1098     <inputSet ref="boatPermissions"/>
1099     <inputSet ref="common"/>
1100   </feature>
1101
1102
1103   <feature name="Lake">
1104     <category>water</category>
1105     <icon image="features/pois/water_generic.24.png">
1106       <font size="14pt">
1107         <b>${name}</b>
1108       </font>
1109     </icon>
1110     <area/>
1111     <tag k="natural" v="water"/>
1112     <inputSet ref="names"/>
1113     <inputSet ref="boatPermissions"/>
1114     <inputSet ref="common"/>
1115   </feature>
1116
1117
1118   <feature name="Basin">
1119     <category>water</category>
1120     <icon image="features/pois/water_generic.24.png">
1121       <font size="14pt">
1122         <b>${name}</b>
1123       </font>
1124     </icon>
1125
1126     <area/>
1127     <tag k="landuse" v="basin"/>
1128     <inputSet ref="boatPermissions"/>
1129     <inputSet ref="common"/>
1130   </feature>
1131
1132
1133   <feature name="Weir">
1134     <category>water</category>
1135     <icon image="features/waterway__weir.png">
1136       <font size="14pt">
1137         <b>${name}</b>
1138       </font>
1139     </icon>
1140
1141     <line/>
1142     <point/>
1143     <tag k="waterway" v="weir"/>
1144     <inputSet ref="common"/>
1145   </feature>
1146
1147
1148
1149
1150   <feature name="Dock">
1151     <category>water</category>
1152     <icon image="features/pois/water_generic.24.png">
1153       <font size="14pt">
1154         <b>${name}</b>
1155       </font>
1156     </icon>
1157
1158     <area/>
1159     <tag k="waterway" v="dock"/>
1160     <inputSet ref="names"/>
1161     <inputSet ref="common"/>
1162   </feature>
1163
1164
1165   <feature name="Marina">
1166     <category>water</category>
1167     <icon image="features/pois/transport_marina.n.24.png">
1168       <font size="14pt">
1169         <b>${name}</b>
1170       </font>
1171     </icon>
1172
1173     <area/>
1174     <point/>
1175     <tag k="leisure" v="marina"/>
1176     <inputSet ref="names"/>
1177     <inputSet ref="common"/>
1178   </feature>
1179
1180
1181   <feature name="Slipway">
1182     <category>water</category>
1183     <icon image="features/waterway__slipway.png" />
1184     <line/>
1185     <tag k="leisure" v="slipway"/>
1186     <inputSet ref="names"/>
1187     <inputSet ref="common"/>
1188   </feature>
1189
1190   <feature name="Slipway">
1191     <category>water</category>
1192     <point />
1193     <tag k="leisure" v="slipway"/>
1194     <inputSet ref="names"/>
1195     <inputSet ref="common"/>
1196   </feature>
1197
1198   <feature name="Coastline">
1199     <category>water</category>
1200     <line/>
1201     <tag k="natural" v="coastline"/>
1202     <inputSet ref="common"/>
1203   </feature>
1204
1205   <!-- ************************************************************************
1206        Transport
1207        ************************************************************************ -->
1208
1209   <feature name="Railway line">
1210     <category>transport</category>
1211     <icon image="features/transport__railway.png">
1212       <font size="14pt">
1213         <b>${name}</b>
1214       </font>
1215     </icon>
1216
1217     <line/>
1218     <tag k="railway" v="rail"/>
1219     <inputSet ref="bridge"/>
1220     <inputSet ref="tunnel"/>
1221     <inputSet ref="embankment-cutting"/>
1222     <inputSet ref="rail-electrification"/>
1223     <inputSet ref="rail-usage"/>
1224     <inputSet ref="common"/>
1225   </feature>
1226
1227
1228   <feature name="Railway spur">
1229     <category>transport</category>
1230     <icon image="features/transport__railway.png">
1231       <font size="14pt">
1232         <b>${name}</b>
1233       </font>
1234     </icon>
1235
1236     <line/>
1237     <tag k="railway" v="rail"/>
1238     <tag k="service" v="spur"/>
1239     <inputSet ref="common"/>
1240   </feature>
1241
1242
1243   <feature name="Railway siding">
1244     <category>transport</category>
1245     <icon image="features/transport__railway.png">
1246       <font size="14pt">
1247         <b>${name}</b>
1248       </font>
1249     </icon>
1250
1251     <line/>
1252     <tag k="railway" v="rail"/>
1253     <tag k="service" v="siding"/>
1254     <inputSet ref="common"/>
1255   </feature>
1256
1257
1258   <feature name="Preserved line">
1259     <category>transport</category>
1260     <icon image="features/transport__railway.png">
1261       <font size="14pt"><b>${name}</b></font>
1262     </icon>
1263
1264     <line/>
1265     <tag k="railway" v="preserved"/>
1266     <inputSet ref="common"/>
1267   </feature>
1268
1269
1270   <feature name="Disused tracks">
1271     <category>transport</category>
1272     <icon image="features/transport__railway_disused.png">
1273       <font size="14pt">
1274         <b>${name}</b>
1275       </font>
1276     </icon>
1277
1278     <line/>
1279     <tag k="railway" v="disused"/>
1280     <inputSet ref="common"/>
1281   </feature>
1282
1283
1284   <feature name="Old trackbed">
1285     <category>transport</category>
1286     <icon image="features/transport__railway_abandoned.png">
1287       <font size="14pt"><b>${name}</b></font>
1288     </icon>
1289
1290     <line/>
1291     <tag k="railway" v="abandoned"/>
1292     <inputSet ref="common"/>
1293   </feature>
1294
1295
1296   <feature name="Light rail line">
1297     <category>transport</category>
1298     <icon image="features/transport__tram.png">
1299       <font size="14pt">
1300         <b>${name}</b>
1301       </font>
1302     </icon>
1303
1304     <line/>
1305     <tag k="railway" v="light_rail"/>
1306     <inputSet ref="bridge"/>
1307     <inputSet ref="tunnel"/>
1308     <inputset ref="embankment-cutting"/>
1309     <inputSet ref="rail-electrification"/>
1310     <inputSet ref="common"/>
1311   </feature>
1312
1313
1314   <feature name="Tram line">
1315     <category>transport</category>
1316     <icon image="features/transport__tram.png">
1317       <font size="14pt"><b>${name}</b></font>
1318     </icon>
1319
1320     <line/>
1321     <tag k="railway" v="tram"/>
1322     <input ref="tram-route"/>
1323     <inputSet ref="bridge"/>
1324     <inputSet ref="tunnel"/>
1325     <inputset ref="embankment-cutting"/>
1326     <inputSet ref="rail-electrification"/>
1327     <inputSet ref="common"/>
1328   </feature>
1329
1330
1331   <feature name="Subway line">
1332     <category>transport</category>
1333     <icon image="features/transport__subway.png">
1334       <font size="14pt">
1335         <b>${name}</b>
1336       </font>
1337     </icon>
1338
1339     <line/>
1340     <tag k="railway" v="subway"/>
1341     <inputSet ref="bridge"/>
1342     <inputSet ref="tunnel"/>
1343     <inputset ref="embankment-cutting"/>
1344     <inputSet ref="rail-electrification"/>
1345     <inputSet ref="common"/>
1346   </feature>
1347
1348
1349   <feature name="Railway platform">
1350     <category>transport</category>
1351     <icon image="features/transport__railway_platform.png"/>
1352     <line/>
1353     <area/>
1354     <tag k="railway" v="platform"/>
1355     <input type="freetext" presence="onTagMatch" category="Naming" name="Reference" key="ref" description="The number of the platform" priority="low"/>
1356     <inputSet ref="common"/>
1357   </feature>
1358
1359
1360   <feature name="Bus station">
1361     <category>transport</category>
1362     <icon image="icons/transport_blank.png">
1363       <b>${name} ${addr:housename}</b><br/>
1364       ${addr:housenumber} ${addr:street} ${addr:postcode}
1365     </icon>
1366
1367     <area/>
1368     <tag k="amenity" v="bus_station"/>
1369     <tag k="building" v="yes"/>
1370     <inputSet ref="names"/>
1371     <inputSet ref="buildingAddress"/>
1372     <inputSet ref="common"/>
1373   </feature>
1374
1375
1376   <feature name="Airport">
1377     <category>transport</category>
1378     <icon image="icons/transport_airport_48.png"/>
1379     <tag k="aeroway" v="aerodrome"/>
1380     <area/>
1381     <point/>
1382     <inputSet ref="names"/>
1383     <input type="freetext" presence="always" category="Naming" name="International Air Transport Association (IATA) airport code" key="ref"/>
1384     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1385     <inputSet ref="common"/>
1386   </feature>
1387
1388
1389   <feature name="Airport terminal">
1390     <category>transport</category>
1391     <icon image="features/pois/transport_airport_terminal.n.24.png"/>
1392     <tag k="aeroway" v="terminal"/>
1393     <area/>
1394     <point/>
1395     <inputSet ref="names"/>
1396     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1397     <inputSet ref="common"/>
1398   </feature>
1399
1400
1401   <feature name="Helipad">
1402     <category>transport</category>
1403     <icon image="icons/transport_helipad_48.png"/>
1404     <tag k="aeroway" v="helipad"/>
1405     <area/>
1406     <point/>
1407     <inputSet ref="names"/>
1408     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1409     <inputSet ref="common"/>
1410   </feature>
1411
1412
1413   <feature name="Airport runway">
1414     <category>transport</category>
1415     <icon image="icons/transport_blank.png"/>
1416     <tag k="aeroway" v="runway"/>
1417     <line/>
1418     <inputSet ref="names"/>
1419     <input type="freetext" presence="always" category="Naming" name="Runway number (01-36)" key="ref"/>
1420     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1421     <inputSet ref="common"/>
1422   </feature>
1423
1424
1425   <feature name="Airport taxiway">
1426     <category>transport</category>
1427     <icon image="icons/transport_blank.png"/>
1428     <tag k="aeroway" v="taxiway"/>
1429     <line/>
1430     <inputSet ref="names"/>
1431     <input type="freetext" presence="always" category="Naming" name="Taxiway number" key="ref" />
1432     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1433     <inputSet ref="common"/>
1434   </feature>
1435
1436
1437   <feature name="Airport apron">
1438     <category>transport</category>
1439     <icon image="icons/transport_blank.png"/>
1440     <tag k="aeroway" v="apron"/>
1441     <area/>
1442     <inputSet ref="names"/>
1443     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1444     <inputSet ref="common"/>
1445   </feature>
1446
1447
1448   <feature name="Airport gate">
1449     <category>transport</category>
1450     <icon image="features/pois/transport_airport_gate.n.24.png"/>
1451     <tag k="aeroway" v="gate"/>
1452     <point/>
1453     <input type="freetext" presence="always" category="Naming" name="Gate number" key="ref"/>
1454     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1455     <inputSet ref="common"/>
1456   </feature>
1457
1458
1459   <!-- ************************************************************************
1460        Buildings
1461        ************************************************************************ -->
1462
1463   <feature name="School">
1464     <category>buildings</category>
1465     <icon image="features/pois/education_school.n.24.png">
1466       <b>${name} ${addr:housename}</b><br/>
1467       ${addr:housenumber} ${addr:street} ${addr:postcode}
1468     </icon>
1469
1470     <area/>
1471     <tag k="amenity" v="school"/>
1472     <tag k="building" v="yes"/>
1473     <inputSet ref="names"/>
1474     <inputSet ref="buildingAddress"/>
1475     <inputSet ref="common"/>
1476   </feature>
1477
1478
1479   <feature name="College">
1480     <category>buildings</category>
1481     <icon image="features/pois/education_university.n.24.png">
1482       <b>${name} ${addr:housename}</b><br/>
1483       ${addr:housenumber} ${addr:street} ${addr:postcode}
1484     </icon>
1485
1486     <area/>
1487     <tag k="amenity" v="college"/>
1488     <tag k="building" v="yes"/>
1489     <inputSet ref="names"/>
1490     <inputSet ref="buildingAddress"/>
1491     <inputSet ref="common"/>
1492   </feature>
1493
1494
1495   <feature name="Supermarket">
1496     <category>buildings</category>
1497     <icon image="features/pois/shopping_supermarket.n.24.png">
1498       <b>${name} ${addr:housename}</b><br/>
1499       ${addr:housenumber} ${addr:street} ${addr:postcode}
1500     </icon>
1501
1502     <area/>
1503     <tag k="shop" v="supermarket"/>
1504     <tag k="building" v="yes"/>
1505     <inputSet ref="names"/>
1506     <inputSet ref="buildingAddress"/>
1507     <inputSet ref="common"/>
1508   </feature>
1509
1510
1511   <feature name="Place of worship">
1512     <category>buildings</category>
1513     <icon image="icons/place_of_worship.png">
1514       <b>${name} ${addr:housename}</b><br/>
1515       ${addr:housenumber} ${addr:street} ${addr:postcode}
1516     </icon>
1517
1518     <area/>
1519     <tag k="amenity" v="place_of_worship"/>
1520     <tag k="building" v="yes"/>
1521     <inputSet ref="names"/>
1522     <inputSet ref="buildingAddress"/>
1523     <input type="choice" category="Religion" name="Religion" key="religion" description="The religion to which this place of worship belongs.">
1524       <choice value="christian" text="Christianity (church)"/>
1525       <choice value="jewish" text="Judaism (synagogue)"/>
1526     </input>
1527     <inputSet ref="common"/>
1528   </feature>
1529
1530
1531   <feature name="Public building">
1532     <category>buildings</category>
1533     <icon image="features/pois/building_generic.png">
1534       <b>${name} ${addr:housename}</b><br/>
1535       ${addr:housenumber} ${addr:street} ${addr:postcode}
1536     </icon>
1537
1538     <area/>
1539     <tag k="amenity" v="public_building"/>
1540     <tag k="building" v="yes"/>
1541     <inputSet ref="names"/>
1542     <inputSet ref="buildingAddress"/>
1543     <inputSet ref="common"/>
1544   </feature>
1545
1546
1547   <feature name="Hospital">
1548     <category>buildings</category>
1549     <icon image="features/pois/health_hospital.n.24.png">
1550       <b>${name} ${addr:housename}</b><br/>
1551       ${addr:housenumber} ${addr:street} ${addr:postcode}
1552     </icon>
1553
1554     <area/>
1555     <tag k="amenity" v="hospital"/>
1556     <tag k="building" v="yes"/>
1557     <inputSet ref="names"/>
1558     <inputSet ref="buildingAddress"/>
1559     <inputSet ref="common"/>
1560   </feature>
1561
1562
1563   <feature name="University">
1564     <category>buildings</category>
1565     <icon image="features/pois/education_university.n.24.png">
1566       <b>${name} ${addr:housename}</b><br/>
1567       ${addr:housenumber} ${addr:street} ${addr:postcode}
1568     </icon>
1569
1570     <area/>
1571     <tag k="amenity" v="university"/>
1572     <tag k="building" v="yes"/>
1573     <inputSet ref="names"/>
1574     <inputSet ref="buildingAddress"/>
1575     <inputSet ref="common"/>
1576   </feature>
1577
1578
1579   <feature name="Attraction">
1580     <category>buildings</category>
1581     <icon image="features/pois/tourist_attraction.n.24.png">
1582       <b>${name} ${addr:housename}</b><br/>
1583       ${addr:housenumber} ${addr:street} ${addr:postcode}
1584     </icon>
1585
1586     <area/>
1587     <tag k="tourism" v="attraction"/>
1588     <tag k="building" v="yes"/>
1589     <inputSet ref="names"/>
1590     <inputSet ref="buildingAddress"/>
1591     <inputSet ref="common"/>
1592   </feature>
1593
1594
1595   <feature name="Museum">
1596     <category>buildings</category>
1597     <icon image="features/pois/tourist_museum.n.24.png">
1598       <b>${name} ${addr:housename}</b><br/>
1599       ${addr:housenumber} ${addr:street} ${addr:postcode}
1600     </icon>
1601
1602     <area/>
1603     <tag k="tourism" v="museum"/>
1604     <tag k="building" v="yes"/>
1605     <inputSet ref="names"/>
1606     <inputSet ref="buildingAddress"/>
1607     <inputSet ref="common"/>
1608   </feature>
1609
1610
1611   <feature name="Zoo">
1612     <category>buildings</category>
1613     <icon image="features/pois/tourist_zoo.n.24.png">
1614       <b>${name} ${addr:housename}</b><br/>
1615       ${addr:housenumber} ${addr:street} ${addr:postcode}
1616     </icon>
1617
1618     <area/>
1619     <tag k="tourism" v="zoo"/>
1620     <tag k="building" v="yes"/>
1621     <inputSet ref="names"/>
1622     <inputSet ref="buildingAddress"/>
1623     <inputSet ref="common"/>
1624   </feature>
1625
1626
1627   <feature name="Stadium">
1628     <category>buildings</category>
1629     <icon image="icons/tourist_blank.png">
1630       <b>${name} ${addr:housename}</b><br/>
1631       ${addr:housenumber} ${addr:street} ${addr:postcode}
1632     </icon>
1633
1634     <area/>
1635     <tag k="leisure" v="stadium"/>
1636     <inputSet ref="names"/>
1637     <inputSet ref="buildingAddress"/>
1638     <inputSet ref="common"/>
1639   </feature>
1640
1641
1642   <feature name="Building">
1643     <category>buildings</category>
1644     <icon image="features/pois/building_generic.png">
1645       <b>${name} ${addr:housename}</b><br/>
1646       ${addr:housenumber} ${addr:street} ${addr:postcode}
1647     </icon>
1648
1649     <area/>
1650     <!-- <tag k="building" v="*"/> -->
1651     <tag k="building" v="yes"/>
1652     <inputSet ref="names"/>
1653     <inputSet ref="buildingAddress"/>
1654     <inputSet ref="common"/>
1655   </feature>
1656
1657
1658   <feature name="Sports centre">
1659     <category>buildings</category>
1660     <icon >
1661       <b>${name} ${addr:housename}</b><br/>
1662       ${addr:housenumber} ${addr:street} ${addr:postcode}
1663     </icon>
1664
1665     <area/>
1666     <point/>
1667     <tag k="leisure" v="sports_centre"/>
1668     <inputSet ref="names"/>
1669     <inputSet ref="buildingAddress"/>
1670     <inputSet ref="pitchSport"/>
1671     <inputSet ref="common"/>
1672   </feature>
1673
1674
1675
1676   <!-- ************************************************************************
1677        Landuse
1678        ************************************************************************ -->
1679
1680   <feature name="Industrial Area">
1681     <category>landuse</category>
1682     <area/>
1683     <icon image="features/pois/building_generic.png">
1684       <b>${name}</b>
1685     </icon>
1686     <tag k="landuse" v="industrial"/>
1687     <inputSet ref="simpleName"/>
1688     <inputSet ref="common"/>
1689   </feature>
1690
1691
1692   <feature name="Offices">
1693     <category>landuse</category>
1694     <area/>
1695     <icon image="features/pois/building_generic.png">
1696       <b>${name}</b>
1697     </icon>
1698     <tag k="landuse" v="commercial"/>
1699     <inputSet ref="simpleName"/>
1700     <inputSet ref="common"/>
1701   </feature>
1702
1703   <feature name="Residential Area">
1704     <category>landuse</category>
1705     <area/>
1706     <icon image="features/pois/building_generic.png">
1707       <b>${name}</b>
1708     </icon>
1709     <tag k="landuse" v="residential"/>
1710     <inputSet ref="simpleName"/>
1711     <inputSet ref="common"/>
1712   </feature>
1713
1714   <feature name="Retail Area">
1715     <category>landuse</category>
1716     <area/>
1717     <icon image="features/pois/building_generic.png">
1718       <b>${name}</b>
1719     </icon>
1720     <tag k="landuse" v="retail"/>
1721     <inputSet ref="simpleName"/>
1722     <inputSet ref="common"/>
1723   </feature>
1724
1725   <feature name="Construction Site">
1726     <category>landuse</category>
1727     <area/>
1728     <icon image="features/pois/building_generic.png">
1729       <b>${name}</b>
1730     </icon>
1731     <tag k="landuse" v="construction"/>
1732     <inputSet ref="simpleName"/>
1733     <inputSet ref="common"/>
1734   </feature>
1735
1736
1737   <feature name="Marketplace">
1738     <category>landuse</category>
1739     <area/>
1740     <icon image="features/pois/shopping_greengrocer.n.24.png">
1741       <b>${name}</b>
1742     </icon>
1743     <tag k="amenity" v="marketplace"/>
1744     <inputSet ref="simpleName"/>
1745     <inputSet ref="common"/>
1746   </feature>
1747
1748
1749   <feature name="Cemetery">
1750     <category>landuse</category>
1751     <area/>
1752     <icon image="features/pois/place_of_worship_unknown3.n.24.png">
1753       <b>${name}</b>
1754     </icon>
1755     <tag k="landuse" v="cemetery"/>
1756     <inputSet ref="simpleName"/>
1757     <inputSet ref="common"/>
1758   </feature>
1759
1760
1761   <feature name="Quarry">
1762     <category>landuse</category>
1763     <icon image="features/pois/poi_mine.n.24.png"/>
1764     <area/>
1765     <tag k="landuse" v="quarry"/>
1766     <inputSet ref="simpleName"/>
1767     <inputSet ref="common"/>
1768   </feature>
1769
1770
1771   <feature name="Military">
1772     <category>landuse</category>
1773     <icon image="features/pois/poi_military_bunker.n.24.png"/>
1774     <area/>
1775     <tag k="landuse" v="military"/>
1776     <inputSet ref="simpleName"/>
1777     <inputSet ref="common"/>
1778   </feature>
1779
1780
1781   <feature name="Conservation">
1782     <category>natural</category>
1783     <icon image="icons/natural_blank.png"/>
1784     <area/>
1785     <tag k="landuse" v="conservation"/>
1786     <inputSet ref="simpleName"/>
1787     <inputSet ref="common"/>
1788   </feature>
1789
1790
1791
1792
1793
1794   <feature name="Playground">
1795     <category>landuse</category>
1796     <area/>
1797     <icon image="features/pois/sport_leisure_centre.n.24.png">
1798       <b>${name}</b>
1799     </icon>
1800     <tag k="leisure" v="playground"/>
1801     <inputSet ref="simpleName"/>
1802     <inputSet ref="common"/>
1803   </feature>
1804
1805
1806   <feature name="Golf course">
1807     <category>landuse</category>
1808     <area/>
1809     <icon  image="features/pois/sport_golf.n.24.png">
1810       <b>${name}</b>
1811     </icon>
1812     <tag k="leisure" v="golf_course"/>
1813     <inputSet ref="simpleName"/>
1814     <inputSet ref="common"/>
1815   </feature>
1816
1817
1818   <feature name="Recreation ground">
1819     <category>landuse</category>
1820     <area/>
1821     <icon image="features/pois/sport_leisure_centre.n.24.png">
1822       <b>${name}</b>
1823     </icon>
1824     <tag k="leisure" v="recreation_ground"/>
1825     <inputSet ref="simpleName"/>
1826     <inputSet ref="common"/>
1827   </feature>
1828
1829
1830   <feature name="Sports pitch">
1831     <category>landuse</category>
1832     <area/>
1833     <icon image="features/pois/sport_leisure_centre.n.24.png">
1834       <b>${name}</b>
1835     </icon>
1836     <tag k="leisure" v="pitch"/>
1837     <inputSet ref="simpleName"/>
1838     <inputSet ref="pitchSport"/>
1839     <inputSet ref="common"/>
1840   </feature>
1841
1842
1843   <inputSet id="pitchSport">
1844     <input name="Sport" presence="always" category="Sport" key="sport" type="choice" description="The sport that is predominantly played here.">
1845       <choice value="9pin" text="9 pin bowling"/>
1846       <choice value="10pin" text="10 pin bowling"/>
1847       <choice value="american_football" text="American football"/>
1848       <choice value="archery" text="Archery"/>
1849       <choice value="athletics" text="Athletics"/>
1850       <choice value="australian_football" text="Australian Rules Football"/>
1851       <choice value="baseball" text="Baseball"/>
1852       <choice value="basketball" text="Basketball"/>
1853       <choice value="beachvolleyball" text="Beach volleyball"/>
1854       <choice value="boules" text="Boules/petanque/bocci"/>
1855       <choice value="bowls" text="Lawn bowls"/>
1856       <choice value="canadian_football" text="Canadian football"/>
1857       <choice value="chess" text="Chess"/>
1858       <choice value="cricket" text="Cricket"/>
1859       <choice value="cricket_nets" text="Cricket nets"/>
1860       <choice value="croquet" text="Croquet"/>
1861       <choice value="equestrian" text="Equestrian"/>
1862       <choice value="gaelic_football" text="Gaelic football"/>
1863       <choice value="gymnastics" text="Gymnastics"/>
1864       <choice value="team_handball" text="(Team) handball"/>
1865       <choice value="hockey" text="(Field) hockey"/>
1866       <choice value="korfball" text="Korball"/>
1867       <choice value="pelota" text="Pelota"/>
1868       <choice value="rugby_league" text="Rugby league"/>
1869       <choice value="rugby_union" text="Rugby union"/>
1870       <choice value="shooting" text="Shooting"/>
1871       <choice value="skating" text="Ice skating"/>
1872       <choice value="skateboard" text="Skateboarding"/>
1873       <choice value="soccer" text="Soccer/football"/>
1874       <choice value="swimming" text="Swimming"/>
1875       <choice value="table_tennis" text="Table tennis"/>
1876       <choice value="tennis" text="Tennis"/>
1877       <choice value="volleyball" text="Volleyball"/>
1878     </input>
1879   </inputSet>
1880
1881   <feature name="Sports track">
1882     <category>landuse</category>
1883     <area/>
1884     <icon image="features/pois/sport_leisure_centre.n.24.png">
1885       <b>${name}</b>
1886     </icon>
1887     <tag k="leisure" v="track"/>
1888     <inputSet ref="simpleName"/>
1889     <inputSet ref="common"/>
1890   </feature>
1891
1892
1893   <!-- ************************************************************************
1894        Power
1895        ************************************************************************ -->
1896
1897   <feature name="High-voltage line">
1898     <category>power</category>
1899     <icon image="features/power_high.png"/>
1900     <line/>
1901     <tag k="power" v="line"/>
1902     <inputSet ref="powerCables"/>
1903     <inputSet ref="common"/>
1904   </feature>
1905
1906
1907   <feature name="Low-voltage line">
1908     <category>power</category>
1909     <icon image="features/power_low.png"/>
1910     <line/>
1911     <tag k="power" v="minor_line"/>
1912     <inputSet ref="powerCables"/>
1913     <inputSet ref="common"/>
1914   </feature>
1915
1916
1917   <feature name="High-voltage pylon">
1918     <category>power</category>
1919     <icon image="icons/power_tower_24.png"/>
1920     <point/>
1921     <tag k="power" v="tower"/>
1922     <inputSet ref="common"/>
1923   </feature>
1924
1925
1926   <feature name="Power pole">
1927     <category>power</category>
1928     <icon image="icons/power_pole_24.png"/>
1929     <point/>
1930     <tag k="power" v="pole"/>
1931     <inputSet ref="common"/>
1932   </feature>
1933
1934
1935   <feature name="Plant (station)">
1936     <category>power</category>
1937     <icon image="icons/power_blank.png"/>
1938     <area/>
1939     <point/>
1940     <tag k="power" v="generator"/>
1941     <inputSet ref="names"/>
1942     <input type="choice" presence="always"  name="Energy source" key="power_source" category="Power">
1943       <choice value="coal" text="Coal"/>
1944       <choice value="gas" text="Gas"/>
1945       <choice value="oil" text="Oil"/>
1946       <choice value="fossil" text="Unspecified fossil fuel"/>
1947       <choice value="hydro" text="Hydroelectric"/>
1948       <choice value="geothermal" text="Geothermal"/>
1949       <choice value="nuclear" text="Nuclear"/>
1950       <choice value="wind" text="Wind"/>
1951       <choice value="photovoltaic" text="Solar PV"/>
1952       <choice value="solar_thermal" text="Solar thermal"/>
1953       <choice value="biofuel" text="Biofuel"/>
1954     </input>
1955     <inputSet ref="common"/>
1956   </feature>
1957
1958
1959   <feature name="Substation">
1960     <category>power</category>
1961     <icon image="icons/power_blank.png"/>"
1962     <area/>
1963     <point/>
1964     <tag k="power" v="station"/>
1965     <inputSet ref="common"/>
1966   </feature>
1967
1968
1969   <feature name="Transformer">
1970     <category>power</category>
1971     <icon image="icons/power_blank.png"/>
1972     <area/>
1973     <point/>
1974     <tag k="power" v="sub_station"/>
1975     <inputSet ref="common"/>
1976   </feature>
1977
1978
1979   <inputSet id="powerCables">
1980     <input type="choice" name="Cables" key="cables" presence="always" category="Power">
1981       <choice value="2" text="2"/>
1982       <choice value="3" text="3"/>
1983       <choice value="4" text="4"/>
1984       <choice value="6" text="6"/>
1985       <choice value="8" text="8"/>
1986       <choice value="10" text="10"/>
1987       <choice value="12" text="12"/>
1988     </input>
1989     <input type="choice" name="Voltage" key="voltage" presence="always" category="Power">
1990       <!-- choices based on http://osmdoc.com/en/tag/voltage/#values-->
1991       <choice value="400" text="400 V"/>
1992       <choice value="600" text="600 V"/>
1993       <choice value="750" text="750 V"/>
1994       <choice value="1500" text="1500 V"/>
1995       <choice value="3000" text="3000 V"/>
1996       <choice value="15000" text="15 kV"/>
1997       <choice value="20000" text="20 kV"/>
1998       <choice value="35000" text="35 kV"/>
1999       <choice value="110000" text="110 kV"/>
2000       <choice value="132000" text="132 kV"/>
2001       <choice value="138000" text="238 kV"/>
2002       <choice value="220000" text="220 kV"/>
2003       <choice value="380000" text="380 kV"/>
2004     </input>
2005   </inputSet>
2006
2007   <!-- Places -->
2008
2009
2010   <feature name="Hamlet">
2011     <category>places</category>
2012     <icon image="icons/place.png"/>
2013     <point/>
2014     <area/>
2015     <tag k="place" v="hamlet" />
2016     <inputSet ref="names"/>
2017     <inputSet ref="places"/>
2018     <inputSet ref="common"/>
2019   </feature>
2020
2021   <feature name="Village">
2022     <category>places</category>
2023     <icon image="icons/place.png"/>
2024     <point/>
2025     <area/>
2026     <tag k="place" v="village" />
2027     <inputSet ref="names"/>
2028     <inputSet ref="places"/>
2029     <inputSet ref="common"/>
2030   </feature>
2031
2032   <feature name="Suburb">
2033     <category>places</category>
2034     <icon image="icons/place.png"/>
2035     <point/>
2036     <area/>
2037     <tag k="place" v="suburb" />
2038     <inputSet ref="names"/>
2039     <inputSet ref="places"/>
2040     <inputSet ref="common"/>
2041   </feature>
2042
2043   <feature name="Town">
2044     <category>places</category>
2045     <icon image="icons/place.png"/>
2046     <point/>
2047     <area/>
2048     <tag k="place" v="town" />
2049     <inputSet ref="names"/>
2050     <inputSet ref="places"/>
2051     <inputSet ref="common"/>
2052   </feature>
2053
2054   <feature name="City">
2055     <category>places</category>
2056     <icon image="icons/place.png"/>
2057     <point/>
2058     <area/>
2059     <tag k="place" v="city" />
2060     <inputSet ref="names"/>
2061     <inputSet ref="places"/>
2062     <inputSet ref="common"/>
2063   </feature>
2064
2065   <!-- ************************************************************************
2066        POIs
2067        ************************************************************************ -->
2068
2069   <!-- =========== Amenity ============ -->
2070
2071   <feature name="Fire station">
2072     <category>amenity</category>
2073     <icon image="features/pois/amenity_firestation2.n.24.png"/>
2074     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfire_station</help>
2075     <point/>
2076     <tag k="amenity" v="fire_station"/>
2077     <input type="freetext" presence="always" category="" name="name" key="name" description="The Name of it." priority="low"/>
2078     <inputSet ref="common"/>
2079   </feature>
2080
2081
2082   <feature name="Police Station">
2083     <category>amenity</category>
2084     <icon image="features/pois/amenity_police2.n.24.png"/>
2085     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpolice</help>
2086     <point/>
2087     <tag k="amenity" v="police"/>
2088     <input type="freetext" presence="always" category="" name="name" key="name" description="The Name of it." priority="low"/>
2089     <inputSet ref="common"/>
2090   </feature>
2091
2092
2093   <feature name="Hospital">
2094     <category>amenity</category>
2095     <icon image="features/pois/health_hospital.n.24.png"/>
2096     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dhospital</help>
2097     <point/>
2098     <tag k="amenity" v="hospital"/>
2099     <input type="freetext" presence="always" category="" name="name" key="name" description="The Name of it." priority="low"/>
2100     <input type="choice" presence="always" category="Hospital" name="Emergency treatment available" key="emergency" description="Are there accident and emergency facilities at this hospital?">
2101       <choice value="yes" text="Yes"/>
2102       <choice value="no" text="No"/>
2103     </input>
2104     <inputSet ref="common"/>
2105   </feature>
2106
2107
2108   <feature name="Place of Worship">
2109     <category>amenity</category>
2110     <icon image="icons/place_of_worship.png"/>
2111     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dplace_of_worship</help>
2112     <point/>
2113     <tag k="amenity" v="place_of_worship"/>
2114     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of it." priority="low"/>
2115     <input type="choice" presence="always" category="" name="Religion" key="religion" description="The religion worshipped here.">
2116       <choice value="christian" text="Christianity (church)"/>
2117       <choice value="jewish" text="Judaism (synagogue)"/>
2118       <choice value="muslim" text="Islam (mosque)"/>
2119       <choice value="hindu" text="Hinduism (temple)"/>
2120       <choice value="buddhist" text="Buddhism (temple)"/>
2121       <choice value="sikh" text="Sikhism (gurdwara)"/>
2122       <choice value="shinto" text="Shinto (shrine)"/>
2123     </input>
2124
2125     <input type="freetext" presence="always" category="" name="denomination" key="denomination" description="The denomination of the religion worshiped here." priority="low"/>
2126     <inputSet ref="common"/>
2127   </feature>
2128
2129
2130   <feature name="ATM">
2131     <category>amenity</category>
2132     <icon image="features/pois/money_atm.n.24.png"/>
2133     <help>http://wiki.openstreetmap.org/wiki/Atm</help>
2134     <point/>
2135     <tag k="amenity" v="atm"/>
2136     <input type="freetext" presence="always" category="Banking" name="Operator" key="operator" description="The organisation that provides this ATM" priority="low"/>
2137     <input type="freetext" presence="always" category="Banking" name="Fee" key="fee" description="Is there a charge for using this ATM? If so how much?"/>
2138     <inputSet ref="common"/>
2139   </feature>
2140
2141
2142   <feature name="Bank">
2143     <category>amenity</category>
2144     <icon image="features/pois/money_bank2.n.24.png">
2145       ${name}
2146     </icon>
2147     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbank</help>
2148     <point/>
2149     <tag k="amenity" v="bank"/>
2150     <inputSet ref="names"/>
2151     <inputSet ref="buildingAddress"/>
2152     <input type="choice" presence="always" category="Bank" name="Public ATM available" key="atm" description="Is there a public ATM available?">
2153       <choice value="yes" text="Yes"/>
2154       <choice value="no" text="No"/>
2155     </input>
2156     <inputSet ref="common"/>
2157   </feature>
2158
2159
2160   <feature name="Recycling">
2161     <category>amenity</category>
2162     <icon image="features/pois/amenity_recycling.n.24.png"/>
2163     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Drecycling</help>
2164     <point/>
2165     <tag k="amenity" v="recycling"/>
2166     <inputSet ref="common"/>
2167   </feature>
2168
2169
2170   <feature name="School">
2171     <category>amenity</category>
2172     <icon image="features/pois/education_school.n.24.png">
2173       ${name}
2174     </icon>
2175     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dschool</help>
2176     <point/>
2177     <tag k="amenity" v="school"/>
2178     <inputSet ref="names"/>
2179     <inputSet ref="buildingAddress"/>
2180     <inputSet ref="common"/>
2181   </feature>
2182
2183
2184   <feature name="Post Box">
2185     <category>amenity</category>
2186     <icon image="features/pois/amenity_post_box.n.24.png">
2187       ${ref}
2188     </icon>
2189     <help>http://wiki.openstreetmap.org/wiki/Post_box</help>
2190     <point/>
2191     <tag k="amenity" v="post_box"/>
2192     <input type="freetext" presence="always" category="Naming" name="Ref" key="ref" description="Reference number of the post box"/>
2193     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2194     <inputSet ref="common"/>
2195   </feature>
2196
2197   <feature name="Toilets">
2198     <category>amenity</category>
2199     <point/>
2200     <tag k="amenity" v="toilets"/>
2201     <inputSet ref="common"/>
2202   </feature>
2203
2204
2205   <!-- ========= Accommodation ========= -->
2206   <!-- Split off from tourism by Steve Bennett, can be remerged if it doesn't work out. -->
2207   <feature name="Hotel">
2208     <category>accommodation</category>
2209     <icon image="features/pois/accommodation_hotel.n.24.png"/>
2210     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dhotel</help>
2211     <point/>
2212     <area/>
2213     <tag k="tourism" v="hotel"/>
2214     <inputSet ref="simpleName"/>
2215     <inputSet ref="common"/>
2216   </feature>
2217
2218
2219   <feature name="Motel">
2220     <category>accommodation</category>
2221     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmotel</help>
2222     <point/>
2223     <area/>
2224     <icon image="features/pois/accommodation_motel.n.24.png"/>
2225     <tag k="tourism" v="motel"/>
2226     <inputSet ref="simpleName"/>
2227     <inputSet ref="common"/>
2228   </feature>
2229
2230
2231
2232   <feature name="Hostel">
2233     <category>accommodation</category>
2234     <point/>
2235     <area/>
2236     <inputSet ref="simpleName"/>
2237     <icon image="features/pois/accommodation_youth_hostel.n.24.png"/>
2238     <tag k="tourism" v="hostel"/>
2239     <inputSet ref="common"/>
2240   </feature>
2241
2242
2243   <!-- Note that tourism=bed_and_breakfast also gets some use. -->
2244   <feature name="Guesthouse (B&amp;B)">
2245     <category>accommodation</category>
2246     <point/>
2247     <area/>
2248     <inputSet ref="simpleName"/>
2249     <icon image="features/pois/accommodation_bed_and_breakfast.n.24.png"/>
2250     <tag k="tourism" v="guest_house"/>
2251     <inputSet ref="common"/>
2252   </feature>
2253
2254
2255   <feature name="Campsite">
2256     <category>accommodation</category>
2257     <point/>
2258     <area/>
2259     <inputSet ref="simpleName"/>
2260     <icon image="features/pois/accommodation_camping.n.24.png"/>
2261     <tag k="tourism" v="camp_site"/>
2262     <inputSet ref="common"/>
2263   </feature>
2264
2265
2266   <feature name="Caravan park">
2267     <category>accommodation</category>
2268     <point/>
2269     <area/>
2270     <inputSet ref="simpleName"/>
2271     <icon image="features/pois/accommodation_caravan_park.n.24.png"/>
2272     <tag k="tourism" v="caravan_site"/>
2273     <inputSet ref="common"/>
2274   </feature>
2275
2276
2277   <feature name="Alpine hut">
2278     <category>accommodation</category>
2279     <point/>
2280     <area/>
2281     <inputSet ref="simpleName"/>
2282     <icon image="features/pois/accommodation_alpinehut.n.24.png"/>
2283     <tag k="tourism" v="alpine_hut"/>
2284     <inputSet ref="common"/>
2285   </feature>
2286
2287
2288   <feature name="Chalet">
2289     <category>accommodation</category>
2290     <icon image="features/pois/accommodation_chalet.n.24.png"/>
2291     <point/>
2292     <area/>
2293     <inputSet ref="simpleName"/>
2294     <tag k="tourism" v="chalet"/>
2295     <inputSet ref="common"/>
2296   </feature>
2297
2298
2299
2300   <!-- ========= Tourism ========= -->
2301
2302   <!-- This is a very popular tag, can't be left out -->
2303   <feature name="Attraction">
2304     <category>tourism</category>
2305     <icon image="icons/tourist_blank.png"/>
2306     <point/>
2307     <area/>
2308     <inputSet ref="simpleName"/>
2309     <tag k="tourism" v="attraction"/>
2310     <inputSet ref="common"/>
2311   </feature>
2312
2313
2314
2315
2316   <feature name="Museum">
2317     <category>tourism</category>
2318     <icon image="features/pois/tourist_museum.n.24.png"/>
2319     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmuseum</help>
2320     <point/>
2321     <area/>
2322     <tag k="tourism" v="museum"/>
2323     <inputSet ref="simpleName"/>
2324     <inputSet ref="common"/>
2325   </feature>
2326
2327
2328   <feature name="Archaeological">
2329     <category>tourism</category>
2330     <point/>
2331     <area/>
2332     <inputSet ref="simpleName"/>
2333     <icon image="features/pois/tourist_archaeological.n.24.png"/>
2334     <tag k="historic" v="archaeological_site"/>
2335     <inputSet ref="common"/>
2336   </feature>
2337
2338
2339   <feature name="Battlefield">
2340     <category>tourism</category>
2341     <point/>
2342     <area/>
2343     <inputSet ref="simpleName"/>
2344     <icon image="features/pois/tourist_battlefield.n.24.png"/>
2345     <tag k="historic" v="battlefield"/>
2346     <inputSet ref="common"/>
2347   </feature>
2348
2349
2350   <feature name="Castle">
2351     <category>tourism</category>
2352     <point/>
2353     <area/>
2354     <inputSet ref="simpleName"/>
2355     <icon image="features/pois/tourist_castle.n.24.png"/>
2356     <tag k="historic" v="castle"/>
2357     <inputSet ref="common"/>
2358   </feature>
2359
2360
2361   <feature name="Memorial">
2362     <category>tourism</category>
2363     <point/>
2364     <inputSet ref="simpleName"/>
2365     <icon image="features/pois/tourist_memorial.n.24.png"/>
2366     <tag k="historic" v="memorial"/>
2367     <inputSet ref="common"/>
2368   </feature>
2369
2370
2371   <feature name="Monument">
2372     <category>tourism</category>
2373     <point/>
2374     <inputSet ref="simpleName"/>
2375     <icon image="features/pois/tourist_monument.n.24.png"/>
2376     <tag k="historic" v="monument"/>
2377     <inputSet ref="common"/>
2378   </feature>
2379
2380
2381   <feature name="Picnic site">
2382     <category>tourism</category>
2383     <point/>
2384     <inputSet ref="simpleName"/>
2385     <icon image="features/pois/tourist_picnic.n.24.png"/>
2386     <tag k="tourism" v="picnic_site"/>
2387     <inputSet ref="common"/>
2388   </feature>
2389
2390
2391   <feature name="Ruin">
2392     <category>tourism</category>
2393     <point/>
2394     <area/>
2395     <inputSet ref="simpleName"/>
2396     <icon image="features/pois/tourist_ruin.n.24.png"/>
2397     <tag k="historic" v="ruin"/>
2398     <inputSet ref="common"/>
2399   </feature>
2400
2401
2402   <feature name="Cinema">
2403     <category>tourism</category>
2404     <icon image="features/pois/tourist_cinema.n.24.png"/>
2405     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcinema</help>
2406     <point/>
2407     <area/>
2408     <tag k="amenity" v="cinema"/>
2409     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the cinema" priority="low"/>
2410     <inputSet ref="common"/>
2411   </feature>
2412
2413
2414   <feature name="Theatre">
2415     <category>tourism</category>
2416     <point/>
2417     <area/>
2418     <inputSet ref="simpleName"/>
2419     <icon image="features/pois/tourist_theatre.n.24.png"/>
2420     <tag k="amenity" v="theatre"/>
2421     <inputSet ref="common"/>
2422   </feature>
2423
2424
2425   <feature name="Viewpoint">
2426     <category>tourism</category>
2427     <point/>
2428     <inputSet ref="simpleName"/>
2429     <icon image="features/pois/tourist_view_point.n.24.png"/>
2430     <tag k="tourism" v="viewpoint"/>
2431     <inputSet ref="common"/>
2432   </feature>
2433
2434
2435   <feature name="Zoo">
2436     <category>tourism</category>
2437     <point/>
2438     <area/>
2439     <inputSet ref="simpleName"/>
2440     <icon image="features/pois/tourist_zoo.n.24.png"/>
2441     <tag k="tourism" v="zoo"/>
2442     <inputSet ref="common"/>
2443   </feature>
2444
2445
2446   <!-- icons needed-->
2447   <feature name="Information">
2448     <category>tourism</category>
2449     <icon image="features/pois/amenity_information.n.24.png"/>
2450     <point/>
2451     <inputSet ref="simpleName"/>
2452     <tag k="tourism" v="information"/>
2453     <inputSet ref="common"/>
2454   </feature>
2455
2456
2457   <feature name="Artwork">
2458     <category>tourism</category>
2459     <icon image="features/pois/tourist_art_gallery2.n.24.png"/>
2460     <point/>
2461     <inputSet ref="simpleName"/>
2462     <tag k="tourism" v="artwork"/>
2463     <inputSet ref="common"/>
2464   </feature>
2465
2466
2467
2468   <feature name="Theme park">
2469     <category>tourism</category>
2470     <icon image="features/pois/tourist_theme_park.n.24.png"/>
2471     <point/>
2472     <area/>
2473     <inputSet ref="simpleName"/>
2474     <tag k="tourism" v="theme_park"/>
2475     <inputSet ref="common"/>
2476   </feature>
2477
2478   <!-- ========= Transport ========= -->
2479
2480   <feature name="Aerodrome">
2481     <category>aeroway</category>
2482     <icon image="features/pois/transport_aerodrome.n.24.png"/>
2483     <help>http://wiki.openstreetmap.org/wiki/Tag:aeroway%3Daerodrome</help>
2484     <point/>
2485     <tag k="aeroway" v="aerodrome"/>
2486     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the aerodrome/airport" priority="low"/>
2487     <inputSet ref="common"/>
2488   </feature>
2489
2490
2491   <feature name="Bus Stop">
2492     <category>transport</category>
2493     <icon image="features/pois/transport_bus_stop2.n.24.png">
2494       ${name} ${local_ref}
2495     </icon>
2496     <point/>
2497     <tag k="highway" v="bus_stop"/>
2498     <inputSet ref="buses"/>
2499     <inputSet ref="common"/>
2500   </feature>
2501
2502
2503   <feature name="Car Parking">
2504     <category>transport</category>
2505     <icon image="features/pois/transport_parking_car.n.24.png">
2506       ${name}
2507     </icon>
2508     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dparking</help>
2509     <point/>
2510     <area/>
2511     <tag k="amenity" v="parking"/>
2512     <inputSet ref="names"/>
2513     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2514     <input type="number" minimum="0" maximum="99999" stepSize="1" presence="always" category="Parking" name="Capacity" key="capacity" description="The number of cars that can be parked in the car park"/>
2515     <inputSet ref="fee"/>
2516     <inputSet ref="common"/>
2517   </feature>
2518
2519
2520   <feature name="Bicycle Parking">
2521     <category>transport</category>
2522     <icon image="features/pois/transport_parking_bicycle.n.24.png">
2523       ${name} ${capacity}
2524     </icon>
2525     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_parking</help>
2526     <point/>
2527     <tag k="amenity" v="bicycle_parking"/>
2528     <inputSet ref="names"/>
2529     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2530     <input type="number" minimum="0" maximum="99999" stepSize="1"
2531         presence="always" category="Cycle" name="Capacity" key="capacity"
2532         description="The number of bicycles that can be parked in the group of bicycle parking racks"/>
2533     <inputSet ref="fee"/>
2534     <input type="choice" presence="always" category="Cycle" name="Covered" key="covered" description="Is the cycle parking covered, so that the bikes are kept dry?">
2535       <choice value="yes" text="Yes"/>
2536       <choice value="no" text="No"/>
2537     </input>
2538     <inputSet ref="common"/>
2539   </feature>
2540
2541
2542   <feature name="Railway station">
2543     <category>transport</category>
2544     <icon image="features/pois/transport_train_station.n.24.png">
2545       <font size="14pt">
2546         <b>${name}</b>
2547       </font>
2548     </icon>
2549
2550     <point/>
2551     <tag k="railway" v="station"/>
2552     <inputSet ref="names"/>
2553     <input type="freetext" presence="onTagMatch" category="Naming" name="Reference" key="ref" description="The shortcode/reference for the station" priority="low"/>
2554     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the service" priority="low"/>
2555     <inputSet ref="common"/>
2556   </feature>
2557
2558
2559   <feature name="Fuel">
2560     <category>transport</category>
2561     <point/>
2562     <inputSet ref="simpleName"/>
2563     <icon image="features/pois/transport_fuel.n.24.png"/>
2564     <tag k="amenity" v="fuel"/>
2565     <input type="freetext" category="Naming" name="Operator" key="operator" description="The provider of the service"/>
2566     <input type="choice" category="Fuels" name="Diesel" key="diesel" description="Is diesel fuel sold here?">
2567       <choice value="yes" text="Yes"/>
2568       <choice value="no" text="No"/>
2569     </input>
2570     <input type="choice" category="Fuels" name="Octane 91" key="diesel" description="Is octane 91 unleaded fuel sold here?">
2571       <choice value="yes" text="Yes"/>
2572       <choice value="no" text="No"/>
2573     </input>
2574     <input type="choice" category="Fuels" name="Octane 95" key="octane_95" description="Is octane 95 unleaded fuel sold here?">
2575       <choice value="yes" text="Yes"/>
2576       <choice value="no" text="No"/>
2577     </input>
2578     <input type="choice" category="Fuels" name="Octane 98" key="octane_98" description="Is octane 98 unleaded fuel sold here?">
2579       <choice value="yes" text="Yes"/>
2580       <choice value="no" text="No"/>
2581     </input>
2582     <input type="choice" category="Fuels" name="Octane 100" key="octane_100" description="Is octane 100 unleaded fuel sold here?">
2583       <choice value="yes" text="Yes"/>
2584       <choice value="no" text="No"/>
2585     </input>
2586     <input type="choice" category="Fuels" name="Ethanol" key="ethanol" description="Is ethanol sold here?">
2587       <choice value="yes" text="Yes"/>
2588       <choice value="no" text="No"/>
2589     </input>
2590     <input type="choice" category="Fuels" name="LPG" key="lpg" description="Is LPG (liquid petroleum gas) sold here?">
2591       <choice value="yes" text="Yes"/>
2592       <choice value="no" text="No"/>
2593     </input>
2594     <input type="choice" category="Fuels" name="Octane 91" key="diesel" description="Is octane 91 unleaded fuel sold here?">
2595       <choice value="yes" text="Yes"/>
2596       <choice value="no" text="No"/>
2597     </input>
2598     <input type="choice" category="Fuels" name="Bio-diesel" key="biodiesel" description="Is biodiesel unleaded fuel sold here?">
2599       <choice value="yes" text="Yes"/>
2600       <choice value="no" text="No"/>
2601     </input>
2602
2603
2604     <inputSet ref="common"/>
2605   </feature>
2606
2607
2608   <feature name="Bus station">
2609     <category>transport</category>
2610     <point/>
2611     <inputSet ref="simpleName"/>
2612     <icon image="features/pois/transport_bus_station.n.24.png"/>
2613     <tag k="amenity" v="bus_station"/>
2614     <inputSet ref="common"/>
2615   </feature>
2616
2617
2618   <feature name="Taxi rank">
2619     <category>transport</category>
2620     <point/>
2621     <inputSet ref="simpleName"/>
2622     <icon image="features/pois/transport_taxi_rank.n.24.png"/>
2623     <tag k="amenity" v="taxi"/>
2624     <inputSet ref="common"/>
2625   </feature>
2626
2627
2628   <feature name="Tram stop">
2629     <category>transport</category><point/><inputSet ref="simpleName" />
2630     <icon image="features/pois/transport_tram_stop.n.24.png"/>
2631     <tag k="railway" v="tram_stop"/>
2632     <inputSet ref="common"/>
2633   </feature>
2634
2635
2636   <feature name="Bicycle rental">
2637     <category>transport</category>
2638     <point/>
2639     <inputSet ref="simpleName"/>
2640     <icon image="features/pois/transport_rental_bicycle.n.24.png"/>
2641     <tag k="amenity" v="bicycle_rental"/>
2642     <inputSet ref="common"/>
2643   </feature>
2644
2645
2646   <feature name="Car rental">
2647     <category>transport</category>
2648     <point/>
2649     <inputSet ref="simpleName"/>
2650     <icon image="features/pois/transport_rental_car.n.24.png"/>
2651     <tag k="amenity" v="car_rental"/>
2652     <inputSet ref="common"/>
2653   </feature>
2654
2655
2656   <feature name="Ferry Terminal">
2657     <category>transport</category>
2658     <icon image="features/pois/transport_port.n.24.png"/>
2659     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dferry_terminal</help>
2660     <point/>
2661     <tag k="amenity" v="ferry_terminal"/>
2662     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the ferry terminal."/>
2663     <input type="freetext" presence="always" category="" name="Operator" key="operator" description="The operator of the ferry terminal." priority="low"/>
2664     <input type="freetext" presence="onTagMatch" category="Cargo" name="Cargo" key="cargo" description="The cargo shipped from here." priority="low"/>
2665     <inputSet ref="common"/>
2666   </feature>
2667
2668
2669   <!-- ========= Barriers ========= -->
2670
2671   <feature name="Bollard">
2672     <category>barrier</category>
2673     <icon image="features/pois/barrier_bollard.n.24.png">
2674     </icon>
2675     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard</help>
2676
2677     <point/>
2678     <tag k="barrier" v="bollard"/>
2679     <inputSet ref="common"/>
2680   </feature>
2681
2682
2683   <feature name="Gate">
2684     <category>barrier</category>
2685     <icon image="features/pois/barrier_gate.n.24.png">
2686     </icon>
2687     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dgate</help>
2688
2689     <point/>
2690     <tag k="barrier" v="gate"/>
2691     <inputSet ref="common"/>
2692   </feature>
2693
2694
2695   <feature name="Lift Gate">
2696     <category>barrier</category>
2697     <icon image="features/pois/barrier_lift_gate.n.24.png"/>
2698     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dlift_gate</help>
2699     <point/>
2700     <tag k="barrier" v="lift_gate"/>
2701     <inputSet ref="common"/>
2702   </feature>
2703
2704
2705   <feature name="Kissing Gate">
2706     <category>barrier</category>
2707     <icon image="features/pois/barrier_kissing_gate.24.png"/>
2708     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dkissing_gate</help>
2709     <point/>
2710     <tag k="barrier" v="kissing_gate"/>
2711     <inputSet ref="common"/>
2712   </feature>
2713
2714
2715
2716   <feature name="Cycle Barrier">
2717     <category>barrier</category>
2718     <icon image="features/pois/barrier_cycle_barrier.24.png">
2719     </icon>
2720     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier</help>
2721
2722     <point/>
2723     <tag k="barrier" v="cycle_barrier"/>
2724     <inputSet ref="common"/>
2725   </feature>
2726
2727
2728   <feature name="Big Concrete Blocks">
2729     <category>barrier</category>
2730     <icon image="features/pois/barrier_blocks.24.png">
2731     </icon>
2732     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dblock</help>
2733
2734     <point/>
2735     <tag k="barrier" v="block"/>
2736     <inputSet ref="common"/>
2737   </feature>
2738
2739
2740   <feature name="Cattle Grid">
2741     <category>barrier</category>
2742     <icon image="features/pois/barrier_cattle_grid.24.png">
2743     </icon>
2744     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcattle_grid</help>
2745
2746     <point/>
2747     <tag k="barrier" v="cattle_grid"/>
2748     <inputSet ref="common"/>
2749   </feature>
2750
2751
2752   <feature name="Toll Booth">
2753     <category>barrier</category>
2754     <icon image="features/pois/barrier_toll_booth.n.24.png">
2755     </icon>
2756     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dtoll_booth</help>
2757
2758     <point/>
2759     <tag k="barrier" v="toll_booth"/>
2760     <tagSet ref="fee"/>
2761     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the toll" priority="low"/>
2762     <inputSet ref="common"/>
2763   </feature>
2764
2765
2766   <feature name="Stile">
2767     <category>barrier</category>
2768     <icon image="features/pois/barrier_stile.n.24.png"/>
2769     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dstile</help>
2770     <point/>
2771     <tag k="barrier" v="stile"/>
2772     <inputSet ref="common"/>
2773   </feature>
2774
2775
2776   <feature name="Turning circle">
2777     <category>transport</category>
2778     <icon image="features/pois/transport_turning_circle.n.24.png"/>
2779     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dturning_circle</help>
2780     <point/>
2781     <tag k="highway" v="turning_circle"/>
2782     <inputSet ref="common"/>
2783   </feature>
2784
2785   <feature name="Mini Roundabout">
2786     <category>transport</category>
2787     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dmini_roundabout</help>
2788     <point/>
2789     <tag k="highway" v="mini_roundabout"/>
2790     <inputSet ref="common"/>
2791   </feature>
2792
2793
2794   <feature name="Traffic calming">
2795
2796     <category>transport</category>
2797     <icon image="icons/speed_hump_16.png"/>
2798     <help>http://wiki.openstreetmap.org/wiki/Key:traffic%3Dcalming</help>
2799     <point/>
2800     <!-- Warning: creates "traffic_calming=*" by default, but it's the best we can do. Steve Bennett-->
2801     <!--<tag k="traffic_calming" v="*"/>-->
2802     <tag k="traffic_calming" v="yes"/>
2803     <input type="choice" key="traffic_calming" name="Obstacle type" category="Traffic calming" presence="onTagMatch">
2804       <choice value="yes" text="Unspecified"/>
2805       <choice value="bump" text="Short bump" description="A sharp speed bump, typically slowing cars to 15 kph or less."/>
2806       <choice value="hump" text="Speed hump" description="A gentler, longer bump, typically slowing cars to 30 kph or less."/>
2807       <choice value="cushion" text="Speed cushion" description="A narrow speed bump allowing emergency vehicles and buses to pass without slowing."/>
2808       <choice value="table" text="Speed table" description="A very long speed hump allowing the whole wheelbase to rest on top."/>
2809       <choice value="chicane" text="Chicane" description="A set of obstacles causing vehicles to weave through."/>
2810       <choice value="rumble_strip" text="Rumble strip" description="A series of very small bumps causing vibration or noise."/>
2811       <choice value="choker" text="Choker" description="An artificial narrowing of the road."/>
2812     </input>
2813
2814     <inputSet ref="common"/>
2815   </feature>
2816
2817
2818
2819   <!-- ========= Entertainment ========= -->
2820
2821   <feature name="Pub">
2822     <category>foodanddrink</category>
2823     <icon image="features/pois/food_pub.n.24.png">
2824       ${name}
2825     </icon>
2826     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub</help>
2827     <point/>
2828     <tag k="amenity" v="pub"/>
2829     <inputSet ref="names"/>
2830     <inputSet ref="web"/>
2831     <inputSet ref="buildingAddress"/>
2832     <inputSet ref="wifi"/>
2833     <inputSet ref="common"/>
2834   </feature>
2835
2836
2837   <feature name="Bar">
2838     <category>foodanddrink</category>
2839     <icon image="features/pois/food_bar.n.24.png">
2840       ${name}
2841     </icon>
2842     <point/>
2843     <tag k="amenity" v="bar"/>
2844     <inputSet ref="names"/>
2845     <inputSet ref="web"/>
2846     <inputSet ref="buildingAddress"/>
2847     <inputSet ref="wifi"/>
2848     <inputSet ref="common"/>
2849   </feature>
2850
2851
2852   <feature name="Restaurant">
2853     <category>foodanddrink</category>
2854     <icon image="features/pois/food_restaurant.n.24.png">
2855       ${name}
2856     </icon>
2857     <point/>
2858     <tag k="amenity" v="restaurant"/>
2859     <inputSet ref="names"/>
2860     <inputSet ref="web"/>
2861     <inputSet ref="buildingAddress"/>
2862     <inputSet ref="cuisine"/>
2863     <inputSet ref="common"/>
2864   </feature>
2865
2866
2867   <feature name="Cafe">
2868     <category>foodanddrink</category>
2869     <icon image="features/pois/food_cafe.n.24.png">
2870       ${name}
2871     </icon>
2872     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe</help>
2873     <point/>
2874     <tag k="amenity" v="cafe"/>
2875     <inputSet ref="names"/>
2876     <inputSet ref="web"/>
2877     <inputSet ref="buildingAddress"/>
2878     <inputSet ref="cuisine"/>
2879     <inputSet ref="wifi"/>
2880     <inputSet ref="common"/>
2881   </feature>
2882
2883
2884   <feature name="Fast Food">
2885     <category>foodanddrink</category>
2886     <icon image="features/pois/food_fastfood.n.24.png">
2887       ${name}
2888     </icon>
2889     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food</help>
2890     <point/>
2891     <tag k="amenity" v="fast_food"/>
2892     <inputSet ref="names"/>
2893     <inputSet ref="web"/>
2894     <inputSet ref="buildingAddress"/>
2895     <inputSet ref="cuisine"/>
2896     <inputSet ref="common"/>
2897   </feature>
2898
2899
2900   <!-- ========= Shops ========= -->
2901
2902   <feature name="Small Convenience Store">
2903     <category>shopping</category>
2904     <icon image="features/pois/shopping_convenience.n.24.png">
2905       ${name}
2906     </icon>
2907     <help>http://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience</help>
2908     <point/>
2909     <tag k="shop" v="convenience"/>
2910     <inputSet ref="names"/>
2911     <inputSet ref="web"/>
2912     <inputSet ref="buildingAddress"/>
2913     <inputSet ref="common"/>
2914   </feature>
2915
2916
2917   <feature name="Supermarket">
2918     <category>shopping</category>
2919     <icon image="features/pois/shopping_supermarket.n.24.png">
2920       ${name}
2921     </icon>
2922     <help>http://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket</help>
2923     <point/>
2924     <tag k="shop" v="supermarket"/>
2925     <inputSet ref="names"/>
2926     <inputSet ref="web"/>
2927     <inputSet ref="buildingAddress"/>
2928     <inputSet ref="common"/>
2929   </feature>
2930
2931
2932   <feature name="Alcohol shop">
2933     <category>shopping</category>
2934     <point/>
2935     <inputSet ref="simpleName"/>
2936     <inputSet ref="web"/>
2937     <inputSet ref="buildingAddress"/>
2938     <icon image="features/pois/shopping_alcohol.n.24.png"/>
2939     <tag k="shop" v="alcohol"/>
2940     <inputSet ref="common"/>
2941   </feature>
2942
2943
2944   <feature name="Bakery">
2945     <category>shopping</category>
2946     <point/>
2947     <inputSet ref="simpleName"/>
2948     <inputSet ref="web"/>
2949     <inputSet ref="buildingAddress"/>
2950     <icon image="features/pois/shopping_bakery.n.24.png"/>
2951     <tag k="shop" v="bakery"/>
2952     <inputSet ref="common"/>
2953   </feature>
2954
2955
2956   <feature name="Bike shop">
2957     <category>shopping</category>
2958     <point/>
2959     <inputSet ref="simpleName"/>
2960     <inputSet ref="web"/>
2961     <inputSet ref="buildingAddress"/>
2962     <icon image="features/pois/shopping_bicycle.n.24.png"/>
2963     <tag k="shop" v="bicycle"/>
2964     <inputSet ref="common"/>
2965   </feature>
2966
2967
2968   <feature name="Bookshop">
2969     <category>shopping</category>
2970     <point/>
2971     <inputSet ref="simpleName"/>
2972     <inputSet ref="web"/>
2973     <inputSet ref="buildingAddress"/>
2974     <icon image="features/pois/shopping_book.n.24.png"/>
2975     <tag k="shop" v="book"/>
2976     <inputSet ref="common"/>
2977   </feature>
2978
2979
2980   <feature name="Butcher">
2981     <category>shopping</category>
2982     <point/>
2983     <inputSet ref="simpleName"/>
2984     <inputSet ref="web"/>
2985     <inputSet ref="buildingAddress"/>
2986     <icon image="features/pois/shopping_butcher.n.24.png"/>
2987     <tag k="shop" v="butcher"/>
2988     <inputSet ref="common"/>
2989   </feature>
2990
2991
2992   <feature name="Car repair">
2993     <category>shopping</category>
2994     <point/>
2995     <inputSet ref="simpleName"/>
2996     <inputSet ref="web"/>
2997     <inputSet ref="buildingAddress"/>
2998     <icon image="features/pois/shopping_car_repair.n.24.png"/>
2999     <tag k="shop" v="car_repair"/>
3000     <inputSet ref="common"/>
3001   </feature>
3002
3003
3004   <feature name="Clothes shop">
3005     <category>shopping</category>
3006     <point/>
3007     <inputSet ref="simpleName"/>
3008     <inputSet ref="web"/>
3009     <inputSet ref="buildingAddress"/>
3010     <icon image="features/pois/shopping_clothes.n.24.png"/>
3011     <tag k="shop" v="clothes"/>
3012     <inputSet ref="common"/>
3013   </feature>
3014
3015
3016   <feature name="Confectionery">
3017     <category>shopping</category>
3018     <point/>
3019     <inputSet ref="simpleName"/>
3020     <inputSet ref="web"/>
3021     <inputSet ref="buildingAddress"/>
3022     <icon image="features/pois/shopping_confectionery.n.24.png"/>
3023     <tag k="shop" v="confectionery"/>
3024     <inputSet ref="common"/>
3025   </feature>
3026
3027
3028   <feature name="DIY">
3029     <category>shopping</category>
3030     <point/>
3031     <inputSet ref="simpleName"/>
3032     <inputSet ref="web"/>
3033     <inputSet ref="buildingAddress"/>
3034     <icon image="features/pois/shopping_diy.n.24.png"/>
3035     <tag k="shop" v="doityourself"/>
3036     <inputSet ref="common"/>
3037   </feature>
3038
3039
3040   <feature name="Fishmonger">
3041     <category>shopping</category>
3042     <point/>
3043     <inputSet ref="simpleName"/>
3044     <inputSet ref="web"/>
3045     <inputSet ref="buildingAddress"/>
3046     <icon image="features/pois/shopping_fish.n.24.png"/>
3047     <tag k="shop" v="fishmonger"/>
3048     <inputSet ref="common"/>
3049   </feature>
3050
3051
3052   <feature name="Garden centre">
3053     <category>shopping</category>
3054     <point/>
3055     <inputSet ref="simpleName"/>
3056     <inputSet ref="web"/>
3057     <inputSet ref="buildingAddress"/>
3058     <icon image="features/pois/shopping_garden_centre.n.24.png"/>
3059     <tag k="shop" v="garden_centre"/>
3060     <inputSet ref="common"/>
3061   </feature>
3062
3063
3064   <feature name="Gift shop">
3065     <category>shopping</category>
3066     <point/>
3067     <inputSet ref="simpleName"/>
3068     <inputSet ref="web"/>
3069     <inputSet ref="buildingAddress"/>
3070     <icon image="features/pois/shopping_gift.n.24.png"/>
3071     <tag k="shop" v="gift"/>
3072     <inputSet ref="common"/>
3073   </feature>
3074
3075
3076   <feature name="Greengrocer">
3077     <category>shopping</category>
3078     <point/>
3079     <inputSet ref="simpleName"/>
3080     <inputSet ref="web"/>
3081     <inputSet ref="buildingAddress"/>
3082     <icon image="features/pois/shopping_greengrocer.n.24.png"/>
3083     <tag k="shop" v="greengrocer"/>
3084     <inputSet ref="common"/>
3085   </feature>
3086
3087
3088   <feature name="Hairdresser">
3089     <category>shopping</category>
3090     <point/>
3091     <inputSet ref="simpleName"/>
3092     <inputSet ref="web"/>
3093     <inputSet ref="buildingAddress"/>
3094     <icon image="features/pois/shopping_hairdresser.n.24.png"/>
3095     <tag k="shop" v="hairdresser"/>
3096     <inputSet ref="common"/>
3097   </feature>
3098
3099
3100   <feature name="Hifi shop">
3101     <category>shopping</category>
3102     <point/>
3103     <inputSet ref="simpleName"/>
3104     <inputSet ref="web"/>
3105     <inputSet ref="buildingAddress"/>
3106     <icon image="features/pois/shopping_hifi.n.24.png"/>
3107     <tag k="shop" v="hifi"/>
3108     <inputSet ref="common"/>
3109   </feature>
3110
3111
3112   <feature name="Jewellery">
3113     <category>shopping</category>
3114     <point/>
3115     <inputSet ref="simpleName"/>
3116     <inputSet ref="web"/>
3117     <inputSet ref="buildingAddress"/>
3118     <icon image="features/pois/shopping_jewelry.n.24.png"/>
3119     <tag k="shop" v="jewelry"/>
3120     <inputSet ref="common"/>
3121   </feature>
3122
3123
3124   <feature name="Laundrette">
3125     <category>shopping</category>
3126     <point/>
3127     <inputSet ref="simpleName"/>
3128     <inputSet ref="web"/>
3129     <inputSet ref="buildingAddress"/>
3130     <icon image="features/pois/shopping_laundrette.n.24.png"/>
3131     <tag k="shop" v="laundry"/>
3132     <inputSet ref="common"/>
3133   </feature>
3134
3135
3136   <feature name="Motorbike shop">
3137     <category>shopping</category>
3138     <point/>
3139     <inputSet ref="simpleName"/>
3140     <inputSet ref="web"/>
3141     <inputSet ref="buildingAddress"/>
3142     <icon image="features/pois/shopping_motorcycle.n.24.png"/>
3143     <tag k="shop" v="motorcycle"/>
3144     <inputSet ref="common"/>
3145   </feature>
3146
3147
3148   <feature name="Music shop">
3149     <category>shopping</category>
3150     <point/>
3151     <inputSet ref="simpleName"/>
3152     <inputSet ref="web"/>
3153     <inputSet ref="buildingAddress"/>
3154     <icon image="features/pois/shopping_music.n.24.png"/>
3155     <tag k="shop" v="music"/>
3156     <inputSet ref="common"/>
3157   </feature>
3158
3159
3160   <feature name="Pharmacy">
3161     <category>shopping</category>
3162     <icon image="features/pois/health_pharmacy.n.24.png">
3163       ${name}
3164     </icon>
3165     <help>http://wiki.openstreetmap.org/wiki/Pharmacy</help>
3166     <point/>
3167     <tag k="amenity" v="pharmacy"/>
3168     <inputSet ref="names"/>
3169     <inputSet ref="web"/>
3170     <inputSet ref="buildingAddress"/>
3171     <input type="checkbox" category="Amenity" presence="always" description="Does this pharmacy sell prescription drugs?" name="Dispensing" key="dispensing" layout="horizontal"/>
3172     <inputSet ref="common"/>
3173   </feature>
3174
3175
3176   <!-- **************** Agriculture *************** -->
3177   <feature name="Farm">
3178     <category>agriculture</category>
3179     <icon image="features/pois/landuse_grass.n.24.png"/>
3180     <area/>
3181     <tag k="landuse" v="farm"/>
3182     <inputSet ref="simpleName"/>
3183     <inputSet ref="common"/>
3184   </feature>
3185
3186
3187   <feature name="Farmyard">
3188     <category>agriculture</category>
3189     <icon image="features/pois/landuse_grass.n.24.png"/>
3190     <area/>
3191     <tag k="landuse" v="farmyard"/>
3192     <inputSet ref="simpleName"/>
3193     <inputSet ref="common"/>
3194   </feature>
3195
3196
3197   <feature name="Farmland">
3198     <category>agriculture</category>
3199     <icon image="features/pois/landuse_grass.n.24.png"/>
3200     <area/>
3201     <tag k="landuse" v="farmland"/>
3202     <inputSet ref="simpleName"/>
3203     <inputSet ref="common"/>
3204   </feature>
3205
3206
3207   <feature name="Field">
3208     <category>agriculture</category>
3209     <icon image="features/pois/landuse_grass.n.24.png"/>
3210     <area/>
3211     <tag k="landuse" v="meadow"/>
3212     <inputSet ref="simpleName"/>
3213     <inputSet ref="common"/>
3214   </feature>
3215
3216
3217   <feature name="Orchard">
3218     <category>agriculture</category>
3219     <icon image="features/pois/landuse_grass.n.24.png"/>
3220     <area/>
3221     <tag k="landuse" v="orchard"/>
3222     <inputSet ref="simpleName"/>
3223     <inputSet ref="common"/>
3224   </feature>
3225
3226
3227   <feature name="Vineyard">
3228     <category>agriculture</category>
3229     <icon image="features/pois/landuse_grass.n.24.png"/>
3230     <area/>
3231     <tag k="landuse" v="vineyard"/>
3232     <inputSet ref="simpleName"/>
3233     <inputSet ref="common"/>
3234   </feature>
3235
3236   <!-- boundaries -->
3237
3238   <feature name="Administrative Boundary">
3239     <category>places</category>
3240     <line/>
3241     <help>http://wiki.openstreetmap.org/wiki/Tag:boundary=administrative</help>
3242     <tag k="boundary" v="administrative"/>
3243     <input type="number" minimum="2" maximum="10" presence="always" name="Admin Level" key="admin_level" description="The Administrative level" />
3244   </feature>
3245
3246   <!-- ************************************************************************
3247        Relations
3248        ************************************************************************ -->
3249
3250   <feature name="Turn restriction">
3251     <category>advanced</category>
3252     <help>http://wiki.openstreetmap.org/wiki/Turn_restrictions</help>
3253     <relation/>
3254     <tag k="type" v="restriction"/>
3255     <input type="choice" category="Restrictions" presence="always" name="Type" key="restriction" description="What's the restriction?" layout="horizontal" priority="high">
3256       <choice value="no_left_turn"      text="No left turn"/>
3257       <choice value="no_right_turn"     text="No right turn"/>
3258       <choice value="no_u_turn"         text="No U turns"/>
3259       <choice value="no_straight_on"    text="No straight on"/>
3260       <choice value="only_left_turn"    text="Left turn only"/>
3261       <choice value="only_right_turn"   text="Right turn only"/>
3262       <choice value="only_straight_on"  text="Straight on only"/>
3263     </input>
3264     <input type="choice" category="Restrictions" presence="always" name="Except" key="except" description="Are any vehicles exempt?" layout="horizontal">
3265       <choice value="psv"      text="Bus"/>
3266       <choice value="bicycle"  text="Bicycle"/>
3267       <choice value="motorcar" text="Car"/>
3268       <choice value="hgv"      text="HGV"/>
3269     </input>
3270     <input type="freetext" category="Restrictions" presence="always" name="Start day"  key="day_on"   description="What day of the week does it start?" layout="horizontal" priority="low"/>
3271     <input type="freetext" category="Restrictions" presence="always" name="Start time" key="hour_on"  description="What time of day does it start?"     layout="horizontal" priority="low"/>
3272     <input type="freetext" category="Restrictions" presence="always" name="End day"    key="day_off"  description="What day of the week does it end?"   layout="horizontal" priority="lowest"/>
3273     <input type="freetext" category="Restrictions" presence="always" name="End time"   key="hour_off" description="What time of day does it end?"       layout="horizontal" priority="lowest"/>
3274     <inputSet ref="common"/>
3275   </feature>
3276
3277
3278   <feature name="Multipolygon">
3279     <category>advanced</category>
3280     <relation/>
3281     <tag k="type" v="multipolygon"/>
3282     <inputSet ref="common"/>
3283   </feature>
3284
3285
3286   <!-- cycle stuff -->
3287   <feature name="National Cycle Network">
3288     <category>paths</category>
3289     <icon image="features/cycle__ncn.png" background="red" foreground="white">
3290       <font size="14pt">
3291         <b>${ref}</b>
3292       </font>
3293       <br/>
3294       <font size="12pt">${name}</font>
3295     </icon>
3296
3297     <relation/>
3298     <tag k="type" v="route"/>
3299     <tag k="network" v="ncn"/>
3300
3301     <inputSet ref="route"/>
3302     <inputSet ref="common"/>
3303   </feature>
3304
3305
3306   <feature name="Regional Cycle Network">
3307     <category>paths</category>
3308     <icon image="features/cycle__rcn.png" background="cyan" foreground="white">
3309       <font size="14pt"><b>${ref}</b></font><br/>
3310       <font size="12pt">${name}</font>
3311     </icon>
3312
3313     <relation/>
3314     <tag k="type" v="route"/>
3315     <tag k="network" v="rcn"/>
3316
3317     <inputSet ref="route"/>
3318     <inputSet ref="common"/>
3319   </feature>
3320
3321
3322   <feature name="Local Cycle Network">
3323     <category>paths</category>
3324     <icon image="features/cycle__lcn.png" background="blue" foreground="white">
3325       <font size="14pt">
3326         <b>${ref}</b>
3327       </font>
3328       <br/>
3329       <font size="12pt">${name}</font>
3330     </icon>
3331
3332     <relation/>
3333     <tag k="type" v="route"/>
3334     <tag k="network" v="lcn"/>
3335
3336     <inputSet ref="route"/>
3337     <inputSet ref="common"/>
3338   </feature>
3339
3340
3341
3342   <!-- paths -->
3343   <feature name="Long Distance Path">
3344     <category>paths</category>
3345     <icon image="features/paths__footway.png" background="green" foreground="white">
3346       <font size="14pt">
3347         <b>${ref}</b>
3348       </font>
3349       <br/>
3350       <font size="12pt">${name}</font>
3351     </icon>
3352
3353     <relation/>
3354     <tag k="type" v="route"/>
3355     <tag k="route" v="foot"/>
3356
3357     <inputSet ref="route"/>
3358     <inputSet ref="common"/>
3359   </feature>
3360
3361
3362
3363   <!-- public transit routes -->
3364   <feature name="Bus Route">
3365     <category>transport</category>
3366     <icon image="features/transport__bus.png">
3367       <font size="12pt">
3368         ${operator} <b>${ref}</b>
3369       </font>
3370     </icon>
3371
3372     <relation/>
3373     <tag k="type" v="route"/>
3374     <tag k="route" v="bus"/>
3375
3376     <inputSet ref="route"/>
3377     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the bus service" priority="low"/>
3378     <input type="freetext" presence="always" category="Naming" name="Network" key="network" description="The network of the bus service" priority="low"/>
3379     <inputSet ref="common"/>
3380   </feature>
3381
3382
3383   <feature name="Tram Route">
3384     <category>transport</category>
3385     <icon image="features/transport__tram.png">
3386       <font size="12pt">
3387         ${operator} <b>${reg}</b>
3388       </font>
3389     </icon>
3390
3391     <relation/>
3392     <tag k="type" v="route"/>
3393     <tag k="route" v="tram"/>
3394
3395     <inputSet ref="route"/>
3396     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the tram service" priority="low"/>
3397     <input type="freetext" presence="always" category="Naming" name="Network" key="network" description="The network of the tram service" priority="low"/>
3398     <inputSet ref="common"/>
3399   </feature>
3400
3401
3402
3403   <!-- Junction nodes (for turn restrictions) -->
3404
3405   <feature>
3406     <point/>
3407     <within entity="way" k="highway" minimum="2"/>
3408     <inputSet ref="junctionNode"/>
3409     <inputSet ref="common"/>
3410   </feature>
3411
3412
3413 </mapFeatures>