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