| 1 | <?xml version="1.0" encoding="UTF-8"?>
|
|---|
| 2 | <rules xmlns="http://josm.openstreetmap.de/mappaint-style-1.0"
|
|---|
| 3 | name="standard" icon="dialogs/mappaint/josm_small.png">
|
|---|
| 4 | <!--
|
|---|
| 5 | A little help:
|
|---|
| 6 | 1. every rule starts with <rule> and ends with </rule>
|
|---|
| 7 | 2. every rule needs a condition
|
|---|
| 8 | -k for the key (required)
|
|---|
| 9 | -v for the value as a string
|
|---|
| 10 | -b for the values yes / no (boolean, will also understand true, 1 and false, 0 respectively)
|
|---|
| 11 | Both -v and -b are optional (but recommended). If both are ommitted, the rule will apply to all
|
|---|
| 12 | tags with the given key - don't forget to set a priority if other rules could also apply.
|
|---|
| 13 | 3. line attributes
|
|---|
| 14 | - width absolute width in pixel in every zoom level
|
|---|
| 15 | - realwidth relative width which will be scaled in meters, integer
|
|---|
| 16 | - colour
|
|---|
| 17 | - priority
|
|---|
| 18 | - dashed x - dashed line, length of dashes / spaces in x pixels
|
|---|
| 19 | - dashed x,y - dashed line, x length of dashes / spaces in y pixels
|
|---|
| 20 | - dashedcolour second (background) colour of a dashed line
|
|---|
| 21 | 4. linemod attributes
|
|---|
| 22 | - all line attributes
|
|---|
| 23 | - mode ('over' or 'under')
|
|---|
| 24 | - width can be specified relative to modified way:
|
|---|
| 25 | +x - <x> pixels are added to way size
|
|---|
| 26 | -x - <x> pixels are subtracted from way size
|
|---|
| 27 | x% - the size is <x> percent of modified way
|
|---|
| 28 | If the size is <= 1 the minimum size of 1 is used.
|
|---|
| 29 | 5. area attributes
|
|---|
| 30 | - colour
|
|---|
| 31 | - priority
|
|---|
| 32 | - closed (true or false - when true the area style is ignored for unclosed ways)
|
|---|
| 33 | 6. icon attributes
|
|---|
| 34 | - icon (path to icon)
|
|---|
| 35 | - relative to the icon path
|
|---|
| 36 | - URL's are also supported to allow remote icons (are cached locally)
|
|---|
| 37 | - priority
|
|---|
| 38 | - annonate (true or false)
|
|---|
| 39 | 7. scale_min / scale_max
|
|---|
| 40 | - zoom scale for display (currently unused)
|
|---|
| 41 |
|
|---|
| 42 | Using both area and line attributes for the same key/value pair does work. For areas
|
|---|
| 43 | first the best matching area rule is searched and the best matching line rule is
|
|---|
| 44 | connected with it. They need not have the same key/value pair.
|
|---|
| 45 |
|
|---|
| 46 | The colours can consist of the two components - name and hex code (e.g. water#0000ff).
|
|---|
| 47 | If both are given, the color name is introduced in preferences with that value. If only
|
|---|
| 48 | code is given (e.g. #0000ff), it is used directly. If only name is given, either user
|
|---|
| 49 | modified preferences or previous value is used. The 6 hex digit color code can also
|
|---|
| 50 | be appended by a hex value of the alpha channel (thus having 8 hex digits instead of 6).
|
|---|
| 51 |
|
|---|
| 52 | Linemod's are drawn over or under the line they are associated with and modify the
|
|---|
| 53 | appearance. There can be multiple linemod's for one way (contrary to line styles,
|
|---|
| 54 | where only one applies). When drawn over a way either a very small width must be choosen
|
|---|
| 55 | or an alpha value must be used for the colour field (otherwise the original way is
|
|---|
| 56 | not visible). When the mod is under the way, then it must be wide enough to be visible
|
|---|
| 57 | on the sides of the way or the waystyles itself must use alpha channel (which may
|
|---|
| 58 | look strange).
|
|---|
| 59 |
|
|---|
| 60 | If a key/value pair matches more than one rule, the "rule that wins" is unpredicted
|
|---|
| 61 | in case they have same priority! Using priority settings helps to solve conflicts.
|
|---|
| 62 |
|
|---|
| 63 | For external files the <rules> should have following elements:
|
|---|
| 64 | - author the author of the style
|
|---|
| 65 | - version a version number of some sort (e.g. creation date)
|
|---|
| 66 | - description what is your style meant to be
|
|---|
| 67 | - shortdescription very short description
|
|---|
| 68 | - link a link to a helpful website (optional)
|
|---|
| 69 | - name is the name of the style
|
|---|
| 70 | - icon icon to display in style choosing dialog
|
|---|
| 71 | - The fields description, shortdescription and link may also be localized (e.g. de.link)
|
|---|
| 72 | -->
|
|---|
| 73 |
|
|---|
| 74 | <rule>
|
|---|
| 75 | <condition k="restriction" v="no_left_turn"/>
|
|---|
| 76 | <icon annotate="true" src="vehicle/restriction/turn_restrictions/no_left_turn.png"/>
|
|---|
| 77 | <!--icon annotate="true" src="vehicle/restriction/turn_restrictions/ireland/no_left_turn.png"/-->
|
|---|
| 78 | </rule>
|
|---|
| 79 | <rule>
|
|---|
| 80 | <condition k="restriction" v="no_right_turn"/>
|
|---|
| 81 | <icon annotate="true" src="vehicle/restriction/turn_restrictions/no_right_turn.png"/>
|
|---|
| 82 | <!--icon annotate="true" src="vehicle/restriction/turn_restrictions/ireland/no_right_turn.png"/-->
|
|---|
| 83 | </rule>
|
|---|
| 84 | <rule>
|
|---|
| 85 | <condition k="restriction" v="no_straight_on"/>
|
|---|
| 86 | <icon annotate="true" src="vehicle/restriction/turn_restrictions/no_straight_on.png"/>
|
|---|
| 87 | <!--icon annotate="true" src="vehicle/restriction/turn_restrictions/ireland/no_straight_on.png"/-->
|
|---|
| 88 | </rule>
|
|---|
| 89 | <rule>
|
|---|
| 90 | <condition k="restriction" v="no_u_turn"/>
|
|---|
| 91 | <icon annotate="true" src="vehicle/restriction/turn_restrictions/no_u_turn.png"/>
|
|---|
| 92 | <!--icon annotate="true" src="vehicle/restriction/turn_restrictions/ireland/no_u_turn.png"/-->
|
|---|
| 93 | </rule>
|
|---|
| 94 | <rule>
|
|---|
| 95 | <condition k="restriction" v="only_left_turn"/>
|
|---|
| 96 | <icon annotate="true" src="vehicle/restriction/turn_restrictions/only_left_turn.png"/>
|
|---|
| 97 | </rule>
|
|---|
| 98 | <rule>
|
|---|
| 99 | <condition k="restriction" v="only_right_turn"/>
|
|---|
| 100 | <icon annotate="true" src="vehicle/restriction/turn_restrictions/only_right_turn.png"/>
|
|---|
| 101 | </rule>
|
|---|
| 102 | <rule>
|
|---|
| 103 | <condition k="restriction" v="only_straight_on"/>
|
|---|
| 104 | <icon annotate="true" src="vehicle/restriction/turn_restrictions/only_straight_on.png"/>
|
|---|
| 105 | </rule>
|
|---|
| 106 |
|
|---|
| 107 |
|
|---|
| 108 | <!-- mark some specials that should be fixed - they are already the default and therefore shouldn't be tagged -->
|
|---|
| 109 | <rule>
|
|---|
| 110 | <condition k="oneway"/>
|
|---|
| 111 | <!-- no line or area, as this is a highway=xy, railway=xy, .... -->
|
|---|
| 112 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 113 | </rule>
|
|---|
| 114 | <rule>
|
|---|
| 115 | <condition k="bridge" b="yes"/>
|
|---|
| 116 | <linemod mode="over" width="+4" colour="bridge#00008080" dashed="false"/>
|
|---|
| 117 | <icon annotate="true" src="vehicle/viaduct.png"/>
|
|---|
| 118 | </rule>
|
|---|
| 119 | <rule>
|
|---|
| 120 | <condition k="bridge" b="no"/>
|
|---|
| 121 | <line width="2" realwidth="5" dashed="true" colour="deprecated#ff0000" priority="-50000"/>
|
|---|
| 122 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 123 | </rule>
|
|---|
| 124 | <rule>
|
|---|
| 125 | <condition k="bridge" v="viaduct"/>
|
|---|
| 126 | <linemod mode="over" width="+4" colour="bridge#00008080" dashed="false"/>
|
|---|
| 127 | <icon annotate="true" src="vehicle/viaduct.png"/>
|
|---|
| 128 | </rule>
|
|---|
| 129 | <rule>
|
|---|
| 130 | <condition k="bridge" v="aqueduct"/>
|
|---|
| 131 | <linemod mode="over" width="+4" colour="bridge#00008080" dashed="false"/>
|
|---|
| 132 | <icon annotate="true" src="nautical/aqueduct.png"/>
|
|---|
| 133 | </rule>
|
|---|
| 134 | <rule>
|
|---|
| 135 | <condition k="bridge" v="swing"/>
|
|---|
| 136 | <linemod mode="over" width="+4" colour="bridge#00008080" dashed="false"/>
|
|---|
| 137 | <icon annotate="true" src="vehicle/viaduct.png"/>
|
|---|
| 138 | </rule>
|
|---|
| 139 | <rule>
|
|---|
| 140 | <condition k="tunnel" b="yes"/>
|
|---|
| 141 | <linemod mode="over" width="+4" colour="bridge#00008080" dashed="false"/>
|
|---|
| 142 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 143 | </rule>
|
|---|
| 144 | <rule>
|
|---|
| 145 | <condition k="tunnel" b="no"/>
|
|---|
| 146 | <line width="2" realwidth="5" dashed="true" colour="deprecated#ff0000"/>
|
|---|
| 147 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 148 | </rule>
|
|---|
| 149 | <rule>
|
|---|
| 150 | <condition k="cutting" b="no"/>
|
|---|
| 151 | <line width="2" realwidth="5" dashed="true" colour="deprecated#ff0000"/>
|
|---|
| 152 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 153 | </rule>
|
|---|
| 154 | <rule>
|
|---|
| 155 | <condition k="embankment" b="no"/>
|
|---|
| 156 | <line width="2" realwidth="5" dashed="true" colour="deprecated#ff0000"/>
|
|---|
| 157 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 158 | </rule>
|
|---|
| 159 |
|
|---|
| 160 | <!--restrictions tags -->
|
|---|
| 161 | <!--the restrictions rules should be placed before the path rule! -->
|
|---|
| 162 |
|
|---|
| 163 | <rule>
|
|---|
| 164 | <condition k="access" b="no"/>
|
|---|
| 165 | <icon src="vehicle/restriction/access.png" priority="-100"/>
|
|---|
| 166 | </rule>
|
|---|
| 167 | <rule>
|
|---|
| 168 | <condition k="access" v="permissive"/>
|
|---|
| 169 | <linemod mode="under" width="+2" colour="permissive#80ff80" dashed="2"/>
|
|---|
| 170 | <icon annotate="true" src="misc/no_icon.png" priority="-100"/>
|
|---|
| 171 | </rule>
|
|---|
| 172 | <rule>
|
|---|
| 173 | <condition k="access" v="private"/>
|
|---|
| 174 | <linemod mode="under" width="+2" colour="private#ff8080" dashed="2"/>
|
|---|
| 175 | <icon annotate="true" src="misc/no_icon.png" priority="-100"/>
|
|---|
| 176 | </rule>
|
|---|
| 177 | <rule>
|
|---|
| 178 | <condition k="access" v="destination"/>
|
|---|
| 179 | <linemod mode="under" width="+2" colour="destination#8080ff" dashed="2"/>
|
|---|
| 180 | <icon annotate="true" src="misc/no_icon.png" priority="-100"/>
|
|---|
| 181 | </rule>
|
|---|
| 182 |
|
|---|
| 183 | <rule>
|
|---|
| 184 | <condition k="bicycle" b="no"/>
|
|---|
| 185 | <icon src="vehicle/restriction/bicycle.png" priority="-100"/>
|
|---|
| 186 | </rule>
|
|---|
| 187 | <rule>
|
|---|
| 188 | <condition k="bicycle" v="designated"/>
|
|---|
| 189 | <!-- see trac #1559 <line width="1" realwidth="2" colour="bicycle#ff00ff"/>-->
|
|---|
| 190 | <icon annotate="true" src="vehicle/restriction/bicycle-designated.png" priority="-100"/>
|
|---|
| 191 | </rule>
|
|---|
| 192 |
|
|---|
| 193 | <rule>
|
|---|
| 194 | <condition k="foot" b="no"/>
|
|---|
| 195 | <icon src="vehicle/restriction/foot.png" priority="-100"/>
|
|---|
| 196 | </rule>
|
|---|
| 197 | <rule>
|
|---|
| 198 | <condition k="foot" v="designated"/>
|
|---|
| 199 | <!-- see trac #1559 <line width="1" realwidth="1" colour="foot#00ff00"/>-->
|
|---|
| 200 | <icon annotate="true" src="vehicle/restriction/foot-designated.png" priority="-100"/>
|
|---|
| 201 | </rule>
|
|---|
| 202 |
|
|---|
| 203 | <rule>
|
|---|
| 204 | <condition k="goods" b="no"/>
|
|---|
| 205 | <icon src="vehicle/restriction/goods.png" priority="-100"/>
|
|---|
| 206 | </rule>
|
|---|
| 207 |
|
|---|
| 208 | <rule>
|
|---|
| 209 | <condition k="hgv" b="no"/>
|
|---|
| 210 | <icon src="vehicle/restriction/goods.png" priority="-100"/>
|
|---|
| 211 | </rule>
|
|---|
| 212 |
|
|---|
| 213 | <rule>
|
|---|
| 214 | <condition k="horse" b="no"/>
|
|---|
| 215 | <icon src="vehicle/restriction/horse.png" priority="-100"/>
|
|---|
| 216 | </rule>
|
|---|
| 217 | <rule>
|
|---|
| 218 | <condition k="horse" v="designated"/>
|
|---|
| 219 | <!-- see trac #1559 <line width="1" realwidth="2" colour="horse#c08000"/>-->
|
|---|
| 220 | <icon src="vehicle/restriction/horse-designated.png" priority="-100"/>
|
|---|
| 221 | </rule>
|
|---|
| 222 |
|
|---|
| 223 | <rule>
|
|---|
| 224 | <condition k="motorcycle" b="no"/>
|
|---|
| 225 | <icon src="vehicle/restriction/motorbike.png" priority="-100"/>
|
|---|
| 226 | </rule>
|
|---|
| 227 |
|
|---|
| 228 | <rule>
|
|---|
| 229 | <condition k="motorcar" b="no"/>
|
|---|
| 230 | <icon src="vehicle/restriction/motorcar.png" priority="-100"/>
|
|---|
| 231 | </rule>
|
|---|
| 232 |
|
|---|
| 233 | <rule>
|
|---|
| 234 | <condition k="psv" b="no"/>
|
|---|
| 235 | <icon src="vehicle/restriction/psv.png" priority="-100"/>
|
|---|
| 236 | </rule>
|
|---|
| 237 |
|
|---|
| 238 | <rule>
|
|---|
| 239 | <condition k="motorboat" b="no"/>
|
|---|
| 240 | <icon src="misc/no_icon.png" priority="-100"/>
|
|---|
| 241 | </rule>
|
|---|
| 242 |
|
|---|
| 243 | <rule>
|
|---|
| 244 | <condition k="boat" b="no"/>
|
|---|
| 245 | <icon src="misc/no_icon.png" priority="-100"/>
|
|---|
| 246 | </rule>
|
|---|
| 247 |
|
|---|
| 248 | <rule>
|
|---|
| 249 | <condition k="noexit" b="yes"/>
|
|---|
| 250 | <icon src="vehicle/restriction/dead_end.png" priority="-100"/>
|
|---|
| 251 | </rule>
|
|---|
| 252 |
|
|---|
| 253 | <rule>
|
|---|
| 254 | <condition k="maxweight"/>
|
|---|
| 255 | <icon src="vehicle/restriction/maxweight.png"/>
|
|---|
| 256 | </rule>
|
|---|
| 257 |
|
|---|
| 258 | <rule>
|
|---|
| 259 | <condition k="maxheight"/>
|
|---|
| 260 | <icon src="vehicle/restriction/maxheight.png"/>
|
|---|
| 261 | </rule>
|
|---|
| 262 |
|
|---|
| 263 | <rule>
|
|---|
| 264 | <condition k="maxwidth"/>
|
|---|
| 265 | <icon src="vehicle/restriction/maxwidth.png"/>
|
|---|
| 266 | </rule>
|
|---|
| 267 |
|
|---|
| 268 | <rule>
|
|---|
| 269 | <condition k="maxlength"/>
|
|---|
| 270 | <icon src="vehicle/restriction/maxlength.png"/>
|
|---|
| 271 | </rule>
|
|---|
| 272 |
|
|---|
| 273 | <rule>
|
|---|
| 274 | <condition k="maxspeed"/>
|
|---|
| 275 | <icon src="vehicle/restriction/speed.png"/>
|
|---|
| 276 | </rule>
|
|---|
| 277 |
|
|---|
| 278 | <rule>
|
|---|
| 279 | <condition k="minspeed"/>
|
|---|
| 280 | <icon src="vehicle/restriction/minspeed.png"/>
|
|---|
| 281 | </rule>
|
|---|
| 282 |
|
|---|
| 283 | <rule>
|
|---|
| 284 | <condition k="maxstay"/>
|
|---|
| 285 | <icon src="misc/no_icon.png"/>
|
|---|
| 286 | </rule>
|
|---|
| 287 |
|
|---|
| 288 | <rule>
|
|---|
| 289 | <condition k="toll"/>
|
|---|
| 290 | <icon src="misc/no_icon.png"/>
|
|---|
| 291 | </rule>
|
|---|
| 292 |
|
|---|
| 293 | <rule>
|
|---|
| 294 | <condition k="barrier"/>
|
|---|
| 295 | <icon annotate="true" src="vehicle/restriction/barrier.png" priority="-10"/>
|
|---|
| 296 | </rule>
|
|---|
| 297 | <rule>
|
|---|
| 298 | <condition k="barrier" v="bollard"/>
|
|---|
| 299 | <icon annotate="true" src="vehicle/restriction/bollard.png"/>
|
|---|
| 300 | <line width="3" colour="barrier#F0F050" dashed="3,9"/>
|
|---|
| 301 | </rule>
|
|---|
| 302 | <rule>
|
|---|
| 303 | <condition k="barrier" v="gate"/>
|
|---|
| 304 | <icon annotate="true" src="vehicle/gate.png"/>
|
|---|
| 305 | </rule>
|
|---|
| 306 | <rule>
|
|---|
| 307 | <condition k="barrier" v="hedge"/>
|
|---|
| 308 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 309 | <line width="3" colour="barrier#F0F050"/>
|
|---|
| 310 | </rule>
|
|---|
| 311 | <rule>
|
|---|
| 312 | <condition k="barrier" v="stile"/>
|
|---|
| 313 | <icon annotate="true" src="vehicle/stile.png"/>
|
|---|
| 314 | </rule>
|
|---|
| 315 | <rule>
|
|---|
| 316 | <condition k="barrier" v="turnstile"/>
|
|---|
| 317 | <icon annotate="true" src="vehicle/turnstile.png"/>
|
|---|
| 318 | </rule>
|
|---|
| 319 | <rule>
|
|---|
| 320 | <condition k="barrier" v="fence"/>
|
|---|
| 321 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 322 | <line width="3" colour="barrier#F0F050"/>
|
|---|
| 323 | </rule>
|
|---|
| 324 | <rule>
|
|---|
| 325 | <condition k="barrier" v="cycle_barrier"/>
|
|---|
| 326 | <icon annotate="true" src="vehicle/cycle_barrier.png"/>
|
|---|
| 327 | </rule>
|
|---|
| 328 | <rule>
|
|---|
| 329 | <condition k="barrier" v="lift_gate"/>
|
|---|
| 330 | <icon annotate="true" src="vehicle/lift_gate.png"/>
|
|---|
| 331 | </rule>
|
|---|
| 332 | <rule>
|
|---|
| 333 | <condition k="barrier" v="wall"/>
|
|---|
| 334 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 335 | <line width="3" colour="barrier#F0F050"/>
|
|---|
| 336 | </rule>
|
|---|
| 337 | <rule>
|
|---|
| 338 | <condition k="barrier" v="toll_booth"/>
|
|---|
| 339 | <icon annotate="true" src="vehicle/toll_booth.png"/>
|
|---|
| 340 | <area colour="barrier#F0F050" closed="true"/>
|
|---|
| 341 | </rule>
|
|---|
| 342 | <rule>
|
|---|
| 343 | <condition k="barrier" v="kissing_gate"/>
|
|---|
| 344 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 345 | </rule>
|
|---|
| 346 | <rule>
|
|---|
| 347 | <condition k="barrier" v="city_wall"/>
|
|---|
| 348 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 349 | <line width="3" colour="barrier#F0F050"/>
|
|---|
| 350 | </rule>
|
|---|
| 351 | <rule>
|
|---|
| 352 | <condition k="barrier" v="entrance"/>
|
|---|
| 353 | <icon annotate="true" src="vehicle/entrance.png"/>
|
|---|
| 354 | </rule>
|
|---|
| 355 | <rule>
|
|---|
| 356 | <condition k="barrier" v="retaining_wall"/>
|
|---|
| 357 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 358 | <line width="3" colour="barrier#F0F050"/>
|
|---|
| 359 | </rule>
|
|---|
| 360 | <rule>
|
|---|
| 361 | <condition k="barrier" v="cattle_grid"/>
|
|---|
| 362 | <icon annotate="true" src="vehicle/cattle_grid.png"/>
|
|---|
| 363 | </rule>
|
|---|
| 364 | <rule>
|
|---|
| 365 | <condition k="barrier" v="block"/>
|
|---|
| 366 | <icon annotate="true" src="vehicle/block.png"/>
|
|---|
| 367 | <line width="3" colour="barrier#F0F050"/>
|
|---|
| 368 | </rule>
|
|---|
| 369 | <rule>
|
|---|
| 370 | <condition k="barrier" v="border_control"/>
|
|---|
| 371 | <icon annotate="true" src="vehicle/border_control.png"/>
|
|---|
| 372 | </rule>
|
|---|
| 373 | <rule>
|
|---|
| 374 | <condition k="barrier" v="bump_gate"/>
|
|---|
| 375 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 376 | </rule>
|
|---|
| 377 | <rule>
|
|---|
| 378 | <condition k="barrier" v="sally_port"/>
|
|---|
| 379 | <icon annotate="true" src="vehicle/sally_port.png"/>
|
|---|
| 380 | </rule>
|
|---|
| 381 | <rule>
|
|---|
| 382 | <condition k="barrier" v="portcullis"/>
|
|---|
| 383 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 384 | </rule>
|
|---|
| 385 | <rule>
|
|---|
| 386 | <condition k="barrier" v="spikes"/>
|
|---|
| 387 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 388 | </rule>
|
|---|
| 389 | <rule>
|
|---|
| 390 | <condition k="barrier" v="bus_trap"/>
|
|---|
| 391 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 392 | </rule>
|
|---|
| 393 | <rule>
|
|---|
| 394 | <condition k="barrier" v="drawbridge"/>
|
|---|
| 395 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 396 | </rule>
|
|---|
| 397 | <rule>
|
|---|
| 398 | <condition k="barrier" v="hampshire_gate"/>
|
|---|
| 399 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 400 | </rule>
|
|---|
| 401 |
|
|---|
| 402 | <!-- highway tags -->
|
|---|
| 403 |
|
|---|
| 404 | <rule>
|
|---|
| 405 | <condition k="motorroad" v="yes"/>
|
|---|
| 406 | <linemod mode="under" width="+4" colour="motorroad#0000c0"/>
|
|---|
| 407 | </rule>
|
|---|
| 408 |
|
|---|
| 409 | <rule>
|
|---|
| 410 | <condition k="highway" v="motorway"/>
|
|---|
| 411 | <line width="3" realwidth="8" colour="motorway#809bc0"/>
|
|---|
| 412 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 413 | </rule>
|
|---|
| 414 |
|
|---|
| 415 | <rule>
|
|---|
| 416 | <condition k="highway" v="motorway_link"/>
|
|---|
| 417 | <line width="3" realwidth="5" colour="motorway#809bc0"/>
|
|---|
| 418 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 419 | </rule>
|
|---|
| 420 |
|
|---|
| 421 | <rule>
|
|---|
| 422 | <condition k="highway" v="trunk"/>
|
|---|
| 423 | <line width="3" realwidth="8" colour="trunk#7fc97f"/>
|
|---|
| 424 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 425 | </rule>
|
|---|
| 426 |
|
|---|
| 427 | <rule>
|
|---|
| 428 | <condition k="highway" v="trunk_link"/>
|
|---|
| 429 | <line width="3" realwidth="5" colour="trunk#7fc97f"/>
|
|---|
| 430 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 431 | </rule>
|
|---|
| 432 |
|
|---|
| 433 | <rule>
|
|---|
| 434 | <condition k="highway" v="primary"/>
|
|---|
| 435 | <line width="3" realwidth="8" colour="primary#fb805f"/>
|
|---|
| 436 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 437 | </rule>
|
|---|
| 438 |
|
|---|
| 439 | <rule>
|
|---|
| 440 | <condition k="highway" v="primary_link"/>
|
|---|
| 441 | <line width="3" realwidth="5" colour="primary#fb805f"/>
|
|---|
| 442 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 443 | </rule>
|
|---|
| 444 |
|
|---|
| 445 | <rule>
|
|---|
| 446 | <condition k="highway" v="secondary"/>
|
|---|
| 447 | <line width="3" realwidth="6" colour="secondary#fdbf6f"/>
|
|---|
| 448 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 449 | </rule>
|
|---|
| 450 |
|
|---|
| 451 | <rule>
|
|---|
| 452 | <condition k="highway" v="secondary_link"/>
|
|---|
| 453 | <line width="3" realwidth="5" colour="secondary#fdbf6f"/>
|
|---|
| 454 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 455 | </rule>
|
|---|
| 456 |
|
|---|
| 457 | <rule>
|
|---|
| 458 | <condition k="highway" v="tertiary"/>
|
|---|
| 459 | <line width="2" realwidth="5" colour="tertiary#f7f496"/>
|
|---|
| 460 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 461 | </rule>
|
|---|
| 462 |
|
|---|
| 463 | <rule>
|
|---|
| 464 | <condition k="highway" v="tertiary_link"/>
|
|---|
| 465 | <line width="2" realwidth="4" colour="tertiary#f7f496"/>
|
|---|
| 466 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 467 | </rule>
|
|---|
| 468 |
|
|---|
| 469 | <rule>
|
|---|
| 470 | <condition k="highway" v="unclassified"/>
|
|---|
| 471 | <line width="2" realwidth="5" colour="street#c0c0c0"/>
|
|---|
| 472 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 473 | </rule>
|
|---|
| 474 |
|
|---|
| 475 | <rule>
|
|---|
| 476 | <condition k="highway" v="road"/>
|
|---|
| 477 | <line width="2" realwidth="5" dashed="true" colour="deprecated#ff0000"/>
|
|---|
| 478 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 479 | </rule>
|
|---|
| 480 |
|
|---|
| 481 | <rule>
|
|---|
| 482 | <condition k="highway" v="unsurfaced"/>
|
|---|
| 483 | <line width="1" realwidth="3" colour="street#c0c0c0"/>
|
|---|
| 484 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 485 | </rule>
|
|---|
| 486 |
|
|---|
| 487 | <rule>
|
|---|
| 488 | <condition k="highway" v="track"/>
|
|---|
| 489 | <line width="1" realwidth="3" colour="highway_track#006600" priority="-10000"/>
|
|---|
| 490 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 491 | </rule>
|
|---|
| 492 |
|
|---|
| 493 | <rule>
|
|---|
| 494 | <condition k="highway" v="residential"/>
|
|---|
| 495 | <line width="2" realwidth="5" colour="street#c0c0c0"/>
|
|---|
| 496 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 497 | </rule>
|
|---|
| 498 |
|
|---|
| 499 | <rule>
|
|---|
| 500 | <condition k="highway" v="living_street"/>
|
|---|
| 501 | <line width="2" realwidth="3" colour="street#c0c0c0" dashed="9" dashedcolour="livingdashed#00ff00"/>
|
|---|
| 502 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 503 | </rule>
|
|---|
| 504 |
|
|---|
| 505 | <rule>
|
|---|
| 506 | <condition k="highway" v="service"/>
|
|---|
| 507 | <line width="1" realwidth="3" colour="service#809bc0"/>
|
|---|
| 508 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 509 | </rule>
|
|---|
| 510 |
|
|---|
| 511 | <rule>
|
|---|
| 512 | <condition k="highway" v="bridleway"/>
|
|---|
| 513 | <line width="1" realwidth="2" colour="horse#c08000"/>
|
|---|
| 514 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 515 | </rule>
|
|---|
| 516 |
|
|---|
| 517 | <rule>
|
|---|
| 518 | <condition k="highway" v="cycleway"/>
|
|---|
| 519 | <line width="1" realwidth="2" colour="bicycle#b100ff"/>
|
|---|
| 520 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 521 | </rule>
|
|---|
| 522 |
|
|---|
| 523 | <rule>
|
|---|
| 524 | <condition k="highway" v="footway"/>
|
|---|
| 525 | <line width="1" realwidth="1" colour="foot#00ff00"/>
|
|---|
| 526 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 527 | </rule>
|
|---|
| 528 |
|
|---|
| 529 | <rule>
|
|---|
| 530 | <condition k="highway" v="path"/>
|
|---|
| 531 | <line width="1" realwidth="1" dashed="true" colour="foot#00ff00"/>
|
|---|
| 532 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 533 | </rule>
|
|---|
| 534 |
|
|---|
| 535 | <!-- display path with bicycle/foot=designated/official as if it was cycleway/footway -->
|
|---|
| 536 | <rule>
|
|---|
| 537 | <condition k="highway" v="path"/>
|
|---|
| 538 | <condition k="bicycle" v="designated"/>
|
|---|
| 539 | <line width="1" realwidth="2" colour="bicycle#b100ff" priority="100"/>
|
|---|
| 540 | </rule>
|
|---|
| 541 |
|
|---|
| 542 | <rule>
|
|---|
| 543 | <condition k="highway" v="path"/>
|
|---|
| 544 | <condition k="bicycle" v="official"/>
|
|---|
| 545 | <line width="1" realwidth="2" colour="bicycle#b100ff" priority="100"/>
|
|---|
| 546 | </rule>
|
|---|
| 547 |
|
|---|
| 548 | <rule>
|
|---|
| 549 | <condition k="highway" v="path"/>
|
|---|
| 550 | <condition k="foot" v="designated"/>
|
|---|
| 551 | <line width="1" realwidth="1" colour="foot#00ff00" priority="100"/>
|
|---|
| 552 | </rule>
|
|---|
| 553 |
|
|---|
| 554 | <rule>
|
|---|
| 555 | <condition k="highway" v="path"/>
|
|---|
| 556 | <condition k="foot" v="official"/>
|
|---|
| 557 | <line width="1" realwidth="1" colour="foot#00ff00" priority="100"/>
|
|---|
| 558 | </rule>
|
|---|
| 559 |
|
|---|
| 560 | <rule>
|
|---|
| 561 | <condition k="highway" v="path"/>
|
|---|
| 562 | <condition k="bicycle" v="designated"/>
|
|---|
| 563 | <condition k="foot" v="designated"/>
|
|---|
| 564 | <line width="1" realwidth="2" colour="bicycle#b100ff" dashedcolour="foot#00ff00" dashed="14,14" priority="200"/>
|
|---|
| 565 | </rule>
|
|---|
| 566 |
|
|---|
| 567 | <rule>
|
|---|
| 568 | <condition k="highway" v="path"/>
|
|---|
| 569 | <condition k="bicycle" v="official"/>
|
|---|
| 570 | <condition k="foot" v="official"/>
|
|---|
| 571 | <line width="1" realwidth="2" colour="bicycle#b100ff" dashedcolour="foot#00ff00" dashed="14,14" priority="200"/>
|
|---|
| 572 | </rule>
|
|---|
| 573 |
|
|---|
| 574 | <rule>
|
|---|
| 575 | <condition k="highway" v="pedestrian"/>
|
|---|
| 576 | <line width="3" realwidth="5" colour="foot#00ff00"/>
|
|---|
| 577 | <area colour="foot#00ff00" closed="true"/>
|
|---|
| 578 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 579 | </rule>
|
|---|
| 580 |
|
|---|
| 581 | <rule>
|
|---|
| 582 | <condition k="highway" v="steps"/>
|
|---|
| 583 | <line width="1" realwidth="1" dashed="1" colour="foot#00ff00"/>
|
|---|
| 584 | <icon annotate="true" src="transport/steps.png"/>
|
|---|
| 585 | </rule>
|
|---|
| 586 |
|
|---|
| 587 | <rule>
|
|---|
| 588 | <condition k="highway" v="bus_guideway"/>
|
|---|
| 589 | <line width="1" colour="rail#404040" dashed="true"/>
|
|---|
| 590 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 591 | </rule>
|
|---|
| 592 |
|
|---|
| 593 | <rule>
|
|---|
| 594 | <condition k="direction" v="clockwise"/>
|
|---|
| 595 | <icon annotate="true" src="vehicle/restriction/roundabout_left.png" priority="10000"/>
|
|---|
| 596 | </rule>
|
|---|
| 597 |
|
|---|
| 598 | <rule>
|
|---|
| 599 | <condition k="highway" v="mini_roundabout"/>
|
|---|
| 600 | <icon annotate="true" src="vehicle/restriction/roundabout_right.png"/>
|
|---|
| 601 | <!--icon annotate="true" src="vehicle/restriction/roundabout_left.png"/-->
|
|---|
| 602 | </rule>
|
|---|
| 603 |
|
|---|
| 604 | <rule>
|
|---|
| 605 | <condition k="highway" v="stop"/>
|
|---|
| 606 | <icon annotate="true" src="vehicle/restriction/stop.png"/>
|
|---|
| 607 | </rule>
|
|---|
| 608 |
|
|---|
| 609 | <rule>
|
|---|
| 610 | <condition k="highway" v="traffic_signals"/>
|
|---|
| 611 | <icon annotate="true" src="vehicle/restriction/traffic-light.png"/>
|
|---|
| 612 | </rule>
|
|---|
| 613 |
|
|---|
| 614 | <rule>
|
|---|
| 615 | <condition k="highway" v="street_lamp"/>
|
|---|
| 616 | <icon annotate="true" src="misc/streetlamp.png"/>
|
|---|
| 617 | </rule>
|
|---|
| 618 |
|
|---|
| 619 | <rule>
|
|---|
| 620 | <condition k="highway" v="speed_camera"/>
|
|---|
| 621 | <icon annotate="true" src="vehicle/restriction/speed_trap.png"/>
|
|---|
| 622 | </rule>
|
|---|
| 623 |
|
|---|
| 624 | <rule>
|
|---|
| 625 | <condition k="traffic_sign" v="city_limit"/>
|
|---|
| 626 | <icon annotate="true" src="vehicle/restriction/citylimit.png"/>
|
|---|
| 627 | </rule>
|
|---|
| 628 |
|
|---|
| 629 | <rule>
|
|---|
| 630 | <condition k="highway" v="crossing"/>
|
|---|
| 631 | <icon annotate="true" src="vehicle/zebra_crossing.png"/>
|
|---|
| 632 | </rule>
|
|---|
| 633 |
|
|---|
| 634 | <rule>
|
|---|
| 635 | <condition k="highway" v="incline"/>
|
|---|
| 636 | <icon annotate="true" src="vehicle/restriction/incline.png"/>
|
|---|
| 637 | </rule>
|
|---|
| 638 |
|
|---|
| 639 | <rule>
|
|---|
| 640 | <condition k="highway" v="incline_steep"/>
|
|---|
| 641 | <icon annotate="true" src="vehicle/restriction/incline.png"/>
|
|---|
| 642 | </rule>
|
|---|
| 643 |
|
|---|
| 644 | <rule>
|
|---|
| 645 | <condition k="highway" v="motorway_junction"/>
|
|---|
| 646 | <icon annotate="true" src="vehicle/exit.png"/>
|
|---|
| 647 | </rule>
|
|---|
| 648 |
|
|---|
| 649 | <rule>
|
|---|
| 650 | <condition k="highway" v="services"/>
|
|---|
| 651 | <area colour="services#c0c0c0"/>
|
|---|
| 652 | <icon annotate="true" src="vehicle/services.png"/>
|
|---|
| 653 | </rule>
|
|---|
| 654 |
|
|---|
| 655 | <rule>
|
|---|
| 656 | <condition k="highway" v="rest_area"/>
|
|---|
| 657 | <area colour="services#c0c0c0"/>
|
|---|
| 658 | <icon annotate="true" src="vehicle/parking.png"/>
|
|---|
| 659 | </rule>
|
|---|
| 660 |
|
|---|
| 661 | <rule>
|
|---|
| 662 | <condition k="highway" v="ford"/>
|
|---|
| 663 | <line width="2" realwidth="5" colour="ford#ff0000"/>
|
|---|
| 664 | <icon annotate="true" src="vehicle/ford.png"/>
|
|---|
| 665 | </rule>
|
|---|
| 666 |
|
|---|
| 667 | <rule>
|
|---|
| 668 | <condition k="highway" v="bus_stop"/>
|
|---|
| 669 | <icon annotate="true" src="transport/bus_small.png"/>
|
|---|
| 670 | </rule>
|
|---|
| 671 |
|
|---|
| 672 | <rule>
|
|---|
| 673 | <condition k="highway" v="platform"/>
|
|---|
| 674 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 675 | <line width="2" colour="highway_platform#c0c0c0"/>
|
|---|
| 676 | <area colour="highway_platform#c0c0c0" closed="true"/>
|
|---|
| 677 | </rule>
|
|---|
| 678 |
|
|---|
| 679 | <rule>
|
|---|
| 680 | <condition k="highway" v="turning_circle"/>
|
|---|
| 681 | <area colour="turningcircle#c0c0c0"/>
|
|---|
| 682 | <icon annotate="true" src="vehicle/turning_circle.png"/>
|
|---|
| 683 | </rule>
|
|---|
| 684 |
|
|---|
| 685 | <rule>
|
|---|
| 686 | <condition k="highway" v="passing_place"/>
|
|---|
| 687 | <icon annotate="true" src="vehicle/passing_place.png"/>
|
|---|
| 688 | </rule>
|
|---|
| 689 |
|
|---|
| 690 | <rule>
|
|---|
| 691 | <condition k="highway" v="construction"/>
|
|---|
| 692 | <line width="2" realwidth="5" colour="construction#ffff00" dashed="true" priority="10"/>
|
|---|
| 693 | <icon src="misc/construction.png" priority="10"/>
|
|---|
| 694 | </rule>
|
|---|
| 695 |
|
|---|
| 696 | <rule>
|
|---|
| 697 | <condition k="highway" v="emergency_access_point"/>
|
|---|
| 698 | <icon src="service/emergency_access_point.png"/>
|
|---|
| 699 | <area colour="emergency_access_point#c0c0c0"/>
|
|---|
| 700 | </rule>
|
|---|
| 701 |
|
|---|
| 702 | <!-- traffic_calming tag -->
|
|---|
| 703 |
|
|---|
| 704 | <rule>
|
|---|
| 705 | <condition k="traffic_calming" v="bump"/>
|
|---|
| 706 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 707 | </rule>
|
|---|
| 708 |
|
|---|
| 709 | <rule>
|
|---|
| 710 | <condition k="traffic_calming" v="hump"/>
|
|---|
| 711 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 712 | </rule>
|
|---|
| 713 |
|
|---|
| 714 | <rule>
|
|---|
| 715 | <condition k="traffic_calming" v="table"/>
|
|---|
| 716 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 717 | </rule>
|
|---|
| 718 |
|
|---|
| 719 | <rule>
|
|---|
| 720 | <condition k="traffic_calming" v="chicane"/>
|
|---|
| 721 | <icon annotate="true" src="vehicle/chicane.png"/>
|
|---|
| 722 | </rule>
|
|---|
| 723 |
|
|---|
| 724 | <rule>
|
|---|
| 725 | <condition k="highway" v="choker"/>
|
|---|
| 726 | <icon annotate="true" src="vehicle/passing_place.png"/>
|
|---|
| 727 | </rule>
|
|---|
| 728 |
|
|---|
| 729 | <rule>
|
|---|
| 730 | <condition k="highway" v="cushion"/>
|
|---|
| 731 | <icon annotate="true" src="vehicle/passing_place.png"/>
|
|---|
| 732 | </rule>
|
|---|
| 733 |
|
|---|
| 734 | <!-- junction tag -->
|
|---|
| 735 |
|
|---|
| 736 | <rule>
|
|---|
| 737 | <condition k="junction" v="roundabout"/>
|
|---|
| 738 | <area colour="roundabout#eeeeee" closed="true"/>
|
|---|
| 739 | <!-- tagging a node makes no real sense, a roundabout should be tagged with several nodes, or a highway=mini_roundabout should probably be used -->
|
|---|
| 740 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 741 | </rule>
|
|---|
| 742 |
|
|---|
| 743 | <!-- cycleway tags -->
|
|---|
| 744 |
|
|---|
| 745 | <rule>
|
|---|
| 746 | <condition k="cycleway" v="lane"/>
|
|---|
| 747 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="8,14"/>
|
|---|
| 748 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 749 | </rule>
|
|---|
| 750 |
|
|---|
| 751 | <rule>
|
|---|
| 752 | <condition k="cycleway" v="opposite_lane"/>
|
|---|
| 753 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="8,14"/>
|
|---|
| 754 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 755 | </rule>
|
|---|
| 756 |
|
|---|
| 757 | <rule>
|
|---|
| 758 | <condition k="cycleway" v="track"/>
|
|---|
| 759 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="14,14"/>
|
|---|
| 760 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 761 | </rule>
|
|---|
| 762 |
|
|---|
| 763 | <rule>
|
|---|
| 764 | <condition k="cycleway" v="opposite_track"/>
|
|---|
| 765 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="14,14"/>
|
|---|
| 766 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 767 | </rule>
|
|---|
| 768 |
|
|---|
| 769 | <rule>
|
|---|
| 770 | <condition k="cycleway" v="opposite"/>
|
|---|
| 771 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="4,10"/>
|
|---|
| 772 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 773 | </rule>
|
|---|
| 774 |
|
|---|
| 775 | <!-- tracktype tags -->
|
|---|
| 776 |
|
|---|
| 777 | <rule>
|
|---|
| 778 | <condition k="tracktype" v="grade1"/>
|
|---|
| 779 | <line width="1" realwidth="3" dashed="2" colour="highway_track#006600"/>
|
|---|
| 780 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 781 | </rule>
|
|---|
| 782 |
|
|---|
| 783 | <rule>
|
|---|
| 784 | <condition k="tracktype" v="grade2"/>
|
|---|
| 785 | <line width="1" realwidth="3" dashed="4" colour="highway_track#006600"/>
|
|---|
| 786 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 787 | </rule>
|
|---|
| 788 |
|
|---|
| 789 | <rule>
|
|---|
| 790 | <condition k="tracktype" v="grade3"/>
|
|---|
| 791 | <line width="1" realwidth="3" dashed="6" colour="highway_track#006600"/>
|
|---|
| 792 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 793 | </rule>
|
|---|
| 794 |
|
|---|
| 795 | <rule>
|
|---|
| 796 | <condition k="tracktype" v="grade4"/>
|
|---|
| 797 | <line width="1" realwidth="3" dashed="8" colour="highway_track#006600"/>
|
|---|
| 798 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 799 | </rule>
|
|---|
| 800 |
|
|---|
| 801 | <rule>
|
|---|
| 802 | <condition k="tracktype" v="grade5"/>
|
|---|
| 803 | <line width="1" realwidth="3" dashed="10" colour="highway_track#006600"/>
|
|---|
| 804 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 805 | </rule>
|
|---|
| 806 |
|
|---|
| 807 | <!--waterway tags -->
|
|---|
| 808 |
|
|---|
| 809 | <rule>
|
|---|
| 810 | <condition k="waterway" v="river"/>
|
|---|
| 811 | <line width="2" realwidth="5" colour="water#0000ff"/>
|
|---|
| 812 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 813 | </rule>
|
|---|
| 814 |
|
|---|
| 815 | <rule>
|
|---|
| 816 | <condition k="waterway" v="riverbank"/>
|
|---|
| 817 | <line width="1" colour="riverbank#0000cf" priority="10000"/>
|
|---|
| 818 | <area colour="riverbank#0000cf" priority="10000"/>
|
|---|
| 819 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 820 | </rule>
|
|---|
| 821 |
|
|---|
| 822 | <rule>
|
|---|
| 823 | <condition k="waterway" v="canal"/>
|
|---|
| 824 | <line width="2" colour="water#0000ff"/>
|
|---|
| 825 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 826 | </rule>
|
|---|
| 827 |
|
|---|
| 828 | <rule>
|
|---|
| 829 | <condition k="waterway" v="stream"/>
|
|---|
| 830 | <line width="1" colour="stream#6600cc"/>
|
|---|
| 831 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 832 | </rule>
|
|---|
| 833 |
|
|---|
| 834 | <rule>
|
|---|
| 835 | <condition k="waterway" v="ditch"/>
|
|---|
| 836 | <line width="1" colour="water#0000ff"/>
|
|---|
| 837 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 838 | </rule>
|
|---|
| 839 | <rule>
|
|---|
| 840 | <condition k="waterway" v="drain"/>
|
|---|
| 841 | <line width="1" colour="water#0000ff"/>
|
|---|
| 842 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 843 | </rule>
|
|---|
| 844 |
|
|---|
| 845 | <rule>
|
|---|
| 846 | <condition k="waterway" v="dock"/>
|
|---|
| 847 | <area colour="dock#0000cf"/>
|
|---|
| 848 | <icon annotate="true" src="nautical/boatyard.png"/>
|
|---|
| 849 | </rule>
|
|---|
| 850 |
|
|---|
| 851 | <rule>
|
|---|
| 852 | <condition k="waterway" v="lock_gate"/>
|
|---|
| 853 | <icon annotate="true" src="nautical/lock_gate.png"/>
|
|---|
| 854 | </rule>
|
|---|
| 855 |
|
|---|
| 856 | <rule>
|
|---|
| 857 | <condition k="waterway" v="turning_point"/>
|
|---|
| 858 | <icon annotate="true" src="nautical/turning.png"/>
|
|---|
| 859 | </rule>
|
|---|
| 860 |
|
|---|
| 861 | <rule>
|
|---|
| 862 | <condition k="waterway" v="boatyard"/>
|
|---|
| 863 | <icon annotate="true" src="nautical/boatyard.png"/>
|
|---|
| 864 | <area colour="manmade#d8d8d8"/>
|
|---|
| 865 | </rule>
|
|---|
| 866 |
|
|---|
| 867 | <rule>
|
|---|
| 868 | <condition k="waterway" v="water_point"/>
|
|---|
| 869 | <icon annotate="true" src="accommodation/camping/water.png"/>
|
|---|
| 870 | </rule>
|
|---|
| 871 |
|
|---|
| 872 | <rule>
|
|---|
| 873 | <condition k="waterway" v="waste_disposal"/>
|
|---|
| 874 | <icon annotate="true" src="accommodation/camping/wastewater.png"/>
|
|---|
| 875 | </rule>
|
|---|
| 876 |
|
|---|
| 877 | <rule>
|
|---|
| 878 | <condition k="waterway" v="mooring"/>
|
|---|
| 879 | <icon annotate="true" src="nautical/marina.png"/>
|
|---|
| 880 | </rule>
|
|---|
| 881 |
|
|---|
| 882 | <rule>
|
|---|
| 883 | <condition k="waterway" v="weir"/>
|
|---|
| 884 | <icon annotate="true" src="nautical/weir.png"/>
|
|---|
| 885 | <line width="2" colour="manmade#d8d8d8"/>
|
|---|
| 886 | </rule>
|
|---|
| 887 |
|
|---|
| 888 | <rule>
|
|---|
| 889 | <condition k="waterway" v="rapids"/>
|
|---|
| 890 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 891 | <line width="2" colour="rapids#8080ff"/>
|
|---|
| 892 | </rule>
|
|---|
| 893 |
|
|---|
| 894 | <rule>
|
|---|
| 895 | <condition k="waterway" v="dam"/>
|
|---|
| 896 | <icon annotate="true" src="nautical/dam.png"/>
|
|---|
| 897 | <line width="2" colour="manmade#d8d8d8"/>
|
|---|
| 898 | <area colour="manmade#d8d8d8" closed="true"/>
|
|---|
| 899 | </rule>
|
|---|
| 900 |
|
|---|
| 901 | <rule>
|
|---|
| 902 | <condition k="waterway" v="waterfall"/>
|
|---|
| 903 | <icon annotate="true" src="nautical/waterfall.png"/>
|
|---|
| 904 | <line width="2" colour="manmade#d8d8d8"/>
|
|---|
| 905 | <!-- it's not possible to have both line and area, line seems more likely -->
|
|---|
| 906 | </rule>
|
|---|
| 907 |
|
|---|
| 908 | <!-- railway tags -->
|
|---|
| 909 |
|
|---|
| 910 | <rule>
|
|---|
| 911 | <condition k="railway" v="station"/>
|
|---|
| 912 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 913 | <icon annotate="true" src="transport/railway_station.png"/>
|
|---|
| 914 | </rule>
|
|---|
| 915 |
|
|---|
| 916 | <rule>
|
|---|
| 917 | <condition k="railway" v="halt"/>
|
|---|
| 918 | <icon annotate="true" src="transport/railway_small.png"/>
|
|---|
| 919 | </rule>
|
|---|
| 920 |
|
|---|
| 921 | <rule>
|
|---|
| 922 | <condition k="railway" v="tram_station"/>
|
|---|
| 923 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 924 | <icon annotate="true" src="transport/railway_station.png"/>
|
|---|
| 925 | </rule>
|
|---|
| 926 |
|
|---|
| 927 | <rule>
|
|---|
| 928 | <condition k="railway" v="tram_stop"/>
|
|---|
| 929 | <icon annotate="true" src="transport/tram.png"/>
|
|---|
| 930 | </rule>
|
|---|
| 931 |
|
|---|
| 932 | <rule>
|
|---|
| 933 | <condition k="railway" v="subway_entrance"/>
|
|---|
| 934 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 935 | <icon annotate="true" src="transport/underground.png"/>
|
|---|
| 936 | </rule>
|
|---|
| 937 |
|
|---|
| 938 | <rule>
|
|---|
| 939 | <condition k="railway" v="crossing"/>
|
|---|
| 940 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 941 | <icon annotate="true" src="vehicle/crossing_small.png"/>
|
|---|
| 942 | </rule>
|
|---|
| 943 |
|
|---|
| 944 | <rule>
|
|---|
| 945 | <condition k="railway" v="level_crossing"/>
|
|---|
| 946 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 947 | <icon annotate="true" src="vehicle/crossing.png"/>
|
|---|
| 948 | </rule>
|
|---|
| 949 |
|
|---|
| 950 | <rule>
|
|---|
| 951 | <condition k="railway" v="rail"/>
|
|---|
| 952 | <line width="2" colour="rail#404040" dashed="true" dashedcolour="raildashed#ffffff"/>
|
|---|
| 953 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 954 | </rule>
|
|---|
| 955 |
|
|---|
| 956 | <rule>
|
|---|
| 957 | <condition k="railway" v="rail"/>
|
|---|
| 958 | <condition k="service" v="siding"/>
|
|---|
| 959 | <line width="1" colour="rail#404040" dashed="true" dashedcolour="raildashed#ffffff" priority="2"/>
|
|---|
| 960 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 961 | </rule>
|
|---|
| 962 |
|
|---|
| 963 | <rule>
|
|---|
| 964 | <condition k="railway" v="rail"/>
|
|---|
| 965 | <condition k="service" v="yard"/>
|
|---|
| 966 | <line width="1" colour="railyard#552200" dashed="true" dashedcolour="raildashed#ffffff" priority="2"/>
|
|---|
| 967 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 968 | </rule>
|
|---|
| 969 |
|
|---|
| 970 | <rule>
|
|---|
| 971 | <condition k="railway" v="rail"/>
|
|---|
| 972 | <condition k="service" v="spur"/>
|
|---|
| 973 | <line width="1" colour="railyard#552200" dashed="true" dashedcolour="raildashed#ffffff" priority="2"/>
|
|---|
| 974 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 975 | </rule>
|
|---|
| 976 |
|
|---|
| 977 | <rule>
|
|---|
| 978 | <condition k="railway" v="tram"/>
|
|---|
| 979 | <!-- prefer way types over tram - draw tram as overlay in joined cases -->
|
|---|
| 980 | <line width="1" colour="otherrail#808080" dashed="true" priority="-10000"/>
|
|---|
| 981 | <linemod mode="over" width="1" colour="railover#202020" dashed="true"/>
|
|---|
| 982 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 983 | </rule>
|
|---|
| 984 |
|
|---|
| 985 | <rule>
|
|---|
| 986 | <condition k="railway" v="light_rail"/>
|
|---|
| 987 | <line width="2" colour="otherrail#808080" dashed="true"/>
|
|---|
| 988 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 989 | </rule>
|
|---|
| 990 |
|
|---|
| 991 | <rule>
|
|---|
| 992 | <condition k="railway" v="subway"/>
|
|---|
| 993 | <line width="1" colour="subway#606060" dashed="true"/>
|
|---|
| 994 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 995 | </rule>
|
|---|
| 996 |
|
|---|
| 997 | <rule>
|
|---|
| 998 | <condition k="railway" v="preserved"/>
|
|---|
| 999 | <line width="1" colour="oldrail#404040" dashed="true"/>
|
|---|
| 1000 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1001 | </rule>
|
|---|
| 1002 |
|
|---|
| 1003 | <!-- disused often appears together with highway=xy -->
|
|---|
| 1004 | <!-- -> normal display with line, linemod for combinations -->
|
|---|
| 1005 | <rule>
|
|---|
| 1006 | <condition k="railway" v="disused"/>
|
|---|
| 1007 | <line width="1" colour="oldrail#404040" dashed="true" priority="-10000"/>
|
|---|
| 1008 | <linemod mode="over" width="1" colour="oldrail#404040" dashed="true"/>
|
|---|
| 1009 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1010 | </rule>
|
|---|
| 1011 |
|
|---|
| 1012 | <!-- abandoned often appears together with highway=xy -->
|
|---|
| 1013 | <!-- -> normal display with line, linemod for combinations -->
|
|---|
| 1014 | <rule>
|
|---|
| 1015 | <condition k="railway" v="abandoned"/>
|
|---|
| 1016 | <line width="1" colour="oldrail#404040" dashed="true" priority="-10000"/>
|
|---|
| 1017 | <linemod mode="over" width="1" colour="oldrail#404040" dashed="true"/>
|
|---|
| 1018 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1019 | </rule>
|
|---|
| 1020 |
|
|---|
| 1021 | <rule>
|
|---|
| 1022 | <condition k="railway" v="narrow_gauge"/>
|
|---|
| 1023 | <line width="1" colour="rail#404040" dashed="true"/>
|
|---|
| 1024 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1025 | </rule>
|
|---|
| 1026 |
|
|---|
| 1027 | <rule>
|
|---|
| 1028 | <condition k="railway" v="monorail"/>
|
|---|
| 1029 | <line width="1" colour="rail#404040" dashed="true"/>
|
|---|
| 1030 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1031 | </rule>
|
|---|
| 1032 |
|
|---|
| 1033 | <rule>
|
|---|
| 1034 | <condition k="railway" v="turntable"/>
|
|---|
| 1035 | <icon annotate="true" src="transport/turntable.png"/>
|
|---|
| 1036 | <area colour="rail#404040"/>
|
|---|
| 1037 | </rule>
|
|---|
| 1038 |
|
|---|
| 1039 | <rule>
|
|---|
| 1040 | <condition k="railway" v="buffer_stop"/>
|
|---|
| 1041 | <icon annotate="true" src="transport/buffer_stop.png"/>
|
|---|
| 1042 | <area colour="rail#404040"/>
|
|---|
| 1043 | </rule>
|
|---|
| 1044 |
|
|---|
| 1045 | <rule>
|
|---|
| 1046 | <condition k="railway" v="platform"/>
|
|---|
| 1047 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1048 | <line width="2" colour="rail#404040"/>
|
|---|
| 1049 | <area colour="rail#404040" closed="true"/>
|
|---|
| 1050 | </rule>
|
|---|
| 1051 |
|
|---|
| 1052 | <rule>
|
|---|
| 1053 | <condition k="railway" v="funicular"/>
|
|---|
| 1054 | <line width="1" colour="rail#404040" dashed="true"/>
|
|---|
| 1055 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1056 | </rule>
|
|---|
| 1057 |
|
|---|
| 1058 | <rule>
|
|---|
| 1059 | <condition k="service" v="yard"/>
|
|---|
| 1060 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1061 | </rule>
|
|---|
| 1062 |
|
|---|
| 1063 | <rule>
|
|---|
| 1064 | <condition k="service" v="siding"/>
|
|---|
| 1065 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1066 | </rule>
|
|---|
| 1067 |
|
|---|
| 1068 | <rule>
|
|---|
| 1069 | <condition k="service" v="spur"/>
|
|---|
| 1070 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1071 | </rule>
|
|---|
| 1072 |
|
|---|
| 1073 | <!--aeroway tags -->
|
|---|
| 1074 |
|
|---|
| 1075 | <rule>
|
|---|
| 1076 | <condition k="aeroway" v="aerodrome"/>
|
|---|
| 1077 | <line width="2" colour="aeroway#660000" dashed="true"/>
|
|---|
| 1078 | <area colour="aeroway#660000"/>
|
|---|
| 1079 | <icon annotate="true" src="transport/airport.png"/>
|
|---|
| 1080 | </rule>
|
|---|
| 1081 |
|
|---|
| 1082 | <rule>
|
|---|
| 1083 | <condition k="aeroway" v="terminal"/>
|
|---|
| 1084 | <area colour="terminal#bb0000"/>
|
|---|
| 1085 | <icon annotate="true" src="transport/airport/terminal.png"/>
|
|---|
| 1086 | </rule>
|
|---|
| 1087 |
|
|---|
| 1088 | <rule>
|
|---|
| 1089 | <condition k="aeroway" v="helipad"/>
|
|---|
| 1090 | <area colour="aeroway_dark#330000"/>
|
|---|
| 1091 | <icon annotate="true" src="transport/airport/helipad.png"/>
|
|---|
| 1092 | </rule>
|
|---|
| 1093 |
|
|---|
| 1094 | <rule>
|
|---|
| 1095 | <condition k="aeroway" v="runway"/>
|
|---|
| 1096 | <line width="3" colour="aeroway_dark#330000"/>
|
|---|
| 1097 | <icon annotate="true" src="transport/airport/runway.png"/>
|
|---|
| 1098 | </rule>
|
|---|
| 1099 |
|
|---|
| 1100 | <rule>
|
|---|
| 1101 | <condition k="aeroway" v="taxiway"/>
|
|---|
| 1102 | <line width="2" colour="aeroway#660000"/>
|
|---|
| 1103 | <icon annotate="true" src="transport/airport/taxiway.png"/>
|
|---|
| 1104 | </rule>
|
|---|
| 1105 |
|
|---|
| 1106 | <rule>
|
|---|
| 1107 | <condition k="aeroway" v="apron"/>
|
|---|
| 1108 | <area colour="aeroway_light#990000"/>
|
|---|
| 1109 | <icon annotate="true" src="transport/airport/apron.png"/>
|
|---|
| 1110 | </rule>
|
|---|
| 1111 |
|
|---|
| 1112 | <rule>
|
|---|
| 1113 | <condition k="aeroway" v="hangar"/>
|
|---|
| 1114 | <area colour="aeroway_light#990000"/>
|
|---|
| 1115 | <icon annotate="true" src="transport/airport/hangar.png"/>
|
|---|
| 1116 | </rule>
|
|---|
| 1117 |
|
|---|
| 1118 | <rule>
|
|---|
| 1119 | <condition k="aeroway" v="gate"/>
|
|---|
| 1120 | <icon annotate="true" src="transport/airport/gate.png"/>
|
|---|
| 1121 | </rule>
|
|---|
| 1122 |
|
|---|
| 1123 | <rule>
|
|---|
| 1124 | <condition k="aeroway" v="windsock"/>
|
|---|
| 1125 | <icon annotate="true" src="transport/airport/windsock.png"/>
|
|---|
| 1126 | </rule>
|
|---|
| 1127 |
|
|---|
| 1128 | <!--aerialway tags -->
|
|---|
| 1129 |
|
|---|
| 1130 | <rule>
|
|---|
| 1131 | <condition k="aerialway" v="cable_car"/>
|
|---|
| 1132 | <line width="1" colour="aerialway#663300" dashed="9"/>
|
|---|
| 1133 | <icon annotate="true" src="transport/aerialway/cable_car.png"/>
|
|---|
| 1134 | </rule>
|
|---|
| 1135 |
|
|---|
| 1136 | <rule>
|
|---|
| 1137 | <condition k="aerialway" v="gondola"/>
|
|---|
| 1138 | <line width="1" colour="aerialway#663300" dashed="9"/>
|
|---|
| 1139 | <icon annotate="true" src="transport/aerialway/gondola.png"/>
|
|---|
| 1140 | </rule>
|
|---|
| 1141 |
|
|---|
| 1142 | <rule>
|
|---|
| 1143 | <condition k="aerialway" v="chair_lift"/>
|
|---|
| 1144 | <line width="1" colour="aerialway#663300" dashed="6"/>
|
|---|
| 1145 | <icon annotate="true" src="transport/aerialway/chair_lift.png"/>
|
|---|
| 1146 | </rule>
|
|---|
| 1147 |
|
|---|
| 1148 | <rule>
|
|---|
| 1149 | <condition k="aerialway" v="drag_lift"/>
|
|---|
| 1150 | <line width="1" colour="aerialway#663300" dashed="3"/>
|
|---|
| 1151 | <icon annotate="true" src="transport/aerialway/drag_lift.png"/>
|
|---|
| 1152 | </rule>
|
|---|
| 1153 |
|
|---|
| 1154 | <rule>
|
|---|
| 1155 | <condition k="aerialway" v="station"/>
|
|---|
| 1156 | <area colour="aerialway#663300"/>
|
|---|
| 1157 | <icon annotate="true" src="transport/aerialway/station.png"/>
|
|---|
| 1158 | </rule>
|
|---|
| 1159 |
|
|---|
| 1160 | <rule>
|
|---|
| 1161 | <condition k="aerialway" v="pylon"/>
|
|---|
| 1162 | <area colour="aerialway#663300"/>
|
|---|
| 1163 | <icon annotate="true" src="misc/landmark/power/tower_small.png"/>
|
|---|
| 1164 | </rule>
|
|---|
| 1165 |
|
|---|
| 1166 | <rule>
|
|---|
| 1167 | <condition k="aerialway" v="goods"/>
|
|---|
| 1168 | <line width="1" colour="aerialway#663300" dashed="1"/>
|
|---|
| 1169 | <icon annotate="true" src="transport/aerialway/goods.png"/>
|
|---|
| 1170 | </rule>
|
|---|
| 1171 |
|
|---|
| 1172 | <!-- piste tags -->
|
|---|
| 1173 |
|
|---|
| 1174 | <rule>
|
|---|
| 1175 | <condition k="piste:difficulty" v="easy"/>
|
|---|
| 1176 | <line width="6" colour="piste_easy#0000ff"/>
|
|---|
| 1177 | <area colour="piste_easy#0000ff" closed="true"/>
|
|---|
| 1178 | <icon src="sport/skiing.png"/>
|
|---|
| 1179 | </rule>
|
|---|
| 1180 |
|
|---|
| 1181 | <rule>
|
|---|
| 1182 | <condition k="piste:difficulty" v="intermediate"/>
|
|---|
| 1183 | <line width="6" colour="piste_intermediate#ff0000"/>
|
|---|
| 1184 | <area colour="piste_intermediate#ff0000" closed="true"/>
|
|---|
| 1185 | <icon src="sport/skiing.png"/>
|
|---|
| 1186 | </rule>
|
|---|
| 1187 |
|
|---|
| 1188 | <rule>
|
|---|
| 1189 | <condition k="piste:difficulty" v="advanced"/>
|
|---|
| 1190 | <line width="6" colour="piste_advanced#606060"/>
|
|---|
| 1191 | <area colour="piste_advanced#606060" closed="true"/>
|
|---|
| 1192 | <icon src="sport/skiing.png"/>
|
|---|
| 1193 | </rule>
|
|---|
| 1194 |
|
|---|
| 1195 | <rule>
|
|---|
| 1196 | <condition k="piste:difficulty" v="expert"/>
|
|---|
| 1197 | <line width="6" colour="piste_expert#606060"/>
|
|---|
| 1198 | <area colour="piste_expert#606060" closed="true"/>
|
|---|
| 1199 | <icon src="sport/skiing.png"/>
|
|---|
| 1200 | </rule>
|
|---|
| 1201 |
|
|---|
| 1202 | <rule>
|
|---|
| 1203 | <condition k="piste:difficulty" v="freeride"/>
|
|---|
| 1204 | <line width="6" colour="piste_freeride#ffff00"/>
|
|---|
| 1205 | <area colour="piste_freeride#ffff00" closed="true"/>
|
|---|
| 1206 | <icon src="sport/skiing.png"/>
|
|---|
| 1207 | </rule>
|
|---|
| 1208 |
|
|---|
| 1209 | <rule>
|
|---|
| 1210 | <condition k="piste:difficulty" v="novice"/>
|
|---|
| 1211 | <line width="6" colour="piste_novice#00ff00"/>
|
|---|
| 1212 | <area colour="piste_novice#00ff00" closed="true"/>
|
|---|
| 1213 | <icon src="sport/skiing.png"/>
|
|---|
| 1214 | </rule>
|
|---|
| 1215 |
|
|---|
| 1216 | <!--power tags -->
|
|---|
| 1217 |
|
|---|
| 1218 | <rule>
|
|---|
| 1219 | <condition k="power" v="tower"/>
|
|---|
| 1220 | <icon annotate="true" src="misc/landmark/power/tower_small.png"/>
|
|---|
| 1221 | <area colour="power#eeeeee"/>
|
|---|
| 1222 | </rule>
|
|---|
| 1223 |
|
|---|
| 1224 | <rule>
|
|---|
| 1225 | <condition k="power" v="pole"/>
|
|---|
| 1226 | <icon annotate="true" src="misc/landmark/power/pole.png"/>
|
|---|
| 1227 | </rule>
|
|---|
| 1228 |
|
|---|
| 1229 | <rule>
|
|---|
| 1230 | <condition k="power" v="line"/>
|
|---|
| 1231 | <line width="1" colour="power#eeeeee"/>
|
|---|
| 1232 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1233 | </rule>
|
|---|
| 1234 |
|
|---|
| 1235 | <rule>
|
|---|
| 1236 | <condition k="power" v="minor_line"/>
|
|---|
| 1237 | <line width="1" colour="power#eeeeee"/>
|
|---|
| 1238 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1239 | </rule>
|
|---|
| 1240 |
|
|---|
| 1241 | <rule>
|
|---|
| 1242 | <condition k="power" v="station"/>
|
|---|
| 1243 | <icon annotate="true" src="misc/landmark/power.png"/>
|
|---|
| 1244 | <area colour="power#eeeeee"/>
|
|---|
| 1245 | </rule>
|
|---|
| 1246 |
|
|---|
| 1247 | <rule>
|
|---|
| 1248 | <condition k="power" v="sub_station"/>
|
|---|
| 1249 | <icon annotate="true" src="misc/landmark/power.png"/>
|
|---|
| 1250 | <area colour="power#eeeeee"/>
|
|---|
| 1251 | </rule>
|
|---|
| 1252 |
|
|---|
| 1253 | <rule>
|
|---|
| 1254 | <condition k="power" v="cable_distribution_cabinet"/>
|
|---|
| 1255 | <icon annotate="true" src="misc/landmark/power.png"/>
|
|---|
| 1256 | </rule>
|
|---|
| 1257 |
|
|---|
| 1258 | <!-- power_source is depricated by the wiki, but still in use -->
|
|---|
| 1259 | <rule>
|
|---|
| 1260 | <condition k="power_source" v="wind"/>
|
|---|
| 1261 | <icon annotate="true" src="misc/landmark/power/wind.png"/>
|
|---|
| 1262 | <area colour="power#eeeeee"/>
|
|---|
| 1263 | </rule>
|
|---|
| 1264 |
|
|---|
| 1265 | <rule>
|
|---|
| 1266 | <condition k="power_source" v="hydro"/>
|
|---|
| 1267 | <icon annotate="true" src="misc/landmark/power/hydro.png"/>
|
|---|
| 1268 | <area colour="power#eeeeee"/>
|
|---|
| 1269 | </rule>
|
|---|
| 1270 |
|
|---|
| 1271 | <rule>
|
|---|
| 1272 | <condition k="power_source" v="fossil"/>
|
|---|
| 1273 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1274 | <area colour="power#eeeeee"/>
|
|---|
| 1275 | </rule>
|
|---|
| 1276 |
|
|---|
| 1277 | <rule>
|
|---|
| 1278 | <condition k="power_source" v="coal"/>
|
|---|
| 1279 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1280 | <area colour="power#eeeeee"/>
|
|---|
| 1281 | </rule>
|
|---|
| 1282 |
|
|---|
| 1283 | <rule>
|
|---|
| 1284 | <condition k="power_source" v="gas"/>
|
|---|
| 1285 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1286 | <area colour="power#eeeeee"/>
|
|---|
| 1287 | </rule>
|
|---|
| 1288 |
|
|---|
| 1289 | <rule>
|
|---|
| 1290 | <condition k="power_source" v="photovoltaic"/>
|
|---|
| 1291 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1292 | <area colour="power#eeeeee"/>
|
|---|
| 1293 | </rule>
|
|---|
| 1294 |
|
|---|
| 1295 | <rule>
|
|---|
| 1296 | <condition k="power_source" v="nuclear"/>
|
|---|
| 1297 | <icon annotate="true" src="misc/landmark/power/nuclear.png"/>
|
|---|
| 1298 | <area colour="power#eeeeee"/>
|
|---|
| 1299 | </rule>
|
|---|
| 1300 |
|
|---|
| 1301 | <!-- generator:source replaces power_source -->
|
|---|
| 1302 | <rule>
|
|---|
| 1303 | <condition k="generator:source" v="wind"/>
|
|---|
| 1304 | <icon annotate="true" src="misc/landmark/power/wind.png"/>
|
|---|
| 1305 | <area colour="power#eeeeee"/>
|
|---|
| 1306 | </rule>
|
|---|
| 1307 |
|
|---|
| 1308 | <rule>
|
|---|
| 1309 | <condition k="generator:source" v="hydro"/>
|
|---|
| 1310 | <icon annotate="true" src="misc/landmark/power/hydro.png"/>
|
|---|
| 1311 | <area colour="power#eeeeee"/>
|
|---|
| 1312 | </rule>
|
|---|
| 1313 |
|
|---|
| 1314 | <rule>
|
|---|
| 1315 | <condition k="generator:source" v="coal"/>
|
|---|
| 1316 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1317 | <area colour="power#eeeeee"/>
|
|---|
| 1318 | </rule>
|
|---|
| 1319 |
|
|---|
| 1320 | <rule>
|
|---|
| 1321 | <condition k="generator:source" v="gas"/>
|
|---|
| 1322 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1323 | <area colour="power#eeeeee"/>
|
|---|
| 1324 | </rule>
|
|---|
| 1325 |
|
|---|
| 1326 | <rule>
|
|---|
| 1327 | <condition k="generator:source" v="nuclear"/>
|
|---|
| 1328 | <icon annotate="true" src="misc/landmark/power/nuclear.png"/>
|
|---|
| 1329 | <area colour="power#eeeeee"/>
|
|---|
| 1330 | </rule>
|
|---|
| 1331 |
|
|---|
| 1332 | <rule>
|
|---|
| 1333 | <condition k="power" v="generator"/>
|
|---|
| 1334 | <icon annotate="true" src="misc/landmark/power.png" priority="-10000"/>
|
|---|
| 1335 | <area colour="power#eeeeee"/>
|
|---|
| 1336 | </rule>
|
|---|
| 1337 |
|
|---|
| 1338 | <!--man_made tags -->
|
|---|
| 1339 |
|
|---|
| 1340 | <rule>
|
|---|
| 1341 | <condition k="man_made" v="beacon"/>
|
|---|
| 1342 | <icon annotate="true" src="misc/landmark/beacon.png"/>
|
|---|
| 1343 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1344 | </rule>
|
|---|
| 1345 |
|
|---|
| 1346 | <rule>
|
|---|
| 1347 | <condition k="man_made" v="chimney"/>
|
|---|
| 1348 | <icon annotate="true" src="misc/landmark/chimney.png"/>
|
|---|
| 1349 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1350 | </rule>
|
|---|
| 1351 |
|
|---|
| 1352 | <rule>
|
|---|
| 1353 | <condition k="man_made" v="crane"/>
|
|---|
| 1354 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1355 | <icon annotate="true" src="misc/landmark/crane.png"/>
|
|---|
| 1356 | </rule>
|
|---|
| 1357 |
|
|---|
| 1358 | <rule>
|
|---|
| 1359 | <condition k="man_made" v="flagpole"/>
|
|---|
| 1360 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1361 | <icon annotate="true" src="misc/flag.png"/>
|
|---|
| 1362 | </rule>
|
|---|
| 1363 |
|
|---|
| 1364 | <rule>
|
|---|
| 1365 | <condition k="man_made" v="gasometer"/>
|
|---|
| 1366 | <icon annotate="true" src="misc/landmark/gasometer.png"/>
|
|---|
| 1367 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1368 | </rule>
|
|---|
| 1369 |
|
|---|
| 1370 | <rule>
|
|---|
| 1371 | <condition k="man_made" v="groyne"/>
|
|---|
| 1372 | <icon annotate="true" src="nautical/groyne.png"/>
|
|---|
| 1373 | <area colour="manmade#d8d8d8" closed="true"/>
|
|---|
| 1374 | </rule>
|
|---|
| 1375 |
|
|---|
| 1376 | <rule>
|
|---|
| 1377 | <condition k="man_made" v="lighthouse"/>
|
|---|
| 1378 | <icon annotate="true" src="misc/landmark/lighthouse.png"/>
|
|---|
| 1379 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1380 | </rule>
|
|---|
| 1381 |
|
|---|
| 1382 | <rule>
|
|---|
| 1383 | <condition k="man_made" v="measurement_station"/>
|
|---|
| 1384 | <icon annotate="true" src="misc/landmark/measurement_station.png"/>
|
|---|
| 1385 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1386 | </rule>
|
|---|
| 1387 |
|
|---|
| 1388 | <rule>
|
|---|
| 1389 | <condition k="man_made" v="mineshaft"/>
|
|---|
| 1390 | <icon annotate="true" src="misc/landmark/mine.png"/>
|
|---|
| 1391 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1392 | </rule>
|
|---|
| 1393 |
|
|---|
| 1394 | <rule>
|
|---|
| 1395 | <condition k="man_made" v="adit"/>
|
|---|
| 1396 | <icon annotate="true" src="misc/landmark/adit.png"/>
|
|---|
| 1397 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1398 | </rule>
|
|---|
| 1399 |
|
|---|
| 1400 | <rule>
|
|---|
| 1401 | <condition k="man_made" v="pier"/>
|
|---|
| 1402 | <area colour="pier#660000" closed="true"/>
|
|---|
| 1403 | <line width="2" colour="pier#660000"/>
|
|---|
| 1404 | <icon annotate="true" src="nautical/pier.png"/>
|
|---|
| 1405 | </rule>
|
|---|
| 1406 |
|
|---|
| 1407 | <rule>
|
|---|
| 1408 | <condition k="man_made" v="pipeline"/>
|
|---|
| 1409 | <line width="2" colour="pipeline#660000"/>
|
|---|
| 1410 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1411 | </rule>
|
|---|
| 1412 |
|
|---|
| 1413 | <rule>
|
|---|
| 1414 | <condition k="man_made" v="petroleum_well"/>
|
|---|
| 1415 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1416 | </rule>
|
|---|
| 1417 |
|
|---|
| 1418 | <rule>
|
|---|
| 1419 | <condition k="man_made" v="reservoir_covered"/>
|
|---|
| 1420 | <icon annotate="true" src="misc/landmark/reservoir_covered.png"/>
|
|---|
| 1421 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1422 | </rule>
|
|---|
| 1423 |
|
|---|
| 1424 | <rule>
|
|---|
| 1425 | <condition k="man_made" v="surveillance"/>
|
|---|
| 1426 | <icon annotate="true" src="misc/surveillance.png"/>
|
|---|
| 1427 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1428 | </rule>
|
|---|
| 1429 |
|
|---|
| 1430 | <rule>
|
|---|
| 1431 | <condition k="man_made" v="survey_point"/>
|
|---|
| 1432 | <icon annotate="true" src="misc/landmark/survey_point.png"/>
|
|---|
| 1433 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1434 | </rule>
|
|---|
| 1435 |
|
|---|
| 1436 | <rule>
|
|---|
| 1437 | <condition k="man_made" v="tower"/>
|
|---|
| 1438 | <icon annotate="true" src="misc/landmark/tower.png"/>
|
|---|
| 1439 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1440 | </rule>
|
|---|
| 1441 |
|
|---|
| 1442 | <rule>
|
|---|
| 1443 | <condition k="man_made" v="wastewater_plant"/>
|
|---|
| 1444 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1445 | <icon annotate="true" src="misc/landmark/wastewater_plant.png"/>
|
|---|
| 1446 | </rule>
|
|---|
| 1447 |
|
|---|
| 1448 | <rule>
|
|---|
| 1449 | <condition k="man_made" v="watermill"/>
|
|---|
| 1450 | <icon annotate="true" src="misc/landmark/watermill.png"/>
|
|---|
| 1451 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1452 | </rule>
|
|---|
| 1453 |
|
|---|
| 1454 | <rule>
|
|---|
| 1455 | <condition k="man_made" v="water_tower"/>
|
|---|
| 1456 | <icon annotate="true" src="misc/landmark/water_tower.png"/>
|
|---|
| 1457 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1458 | </rule>
|
|---|
| 1459 |
|
|---|
| 1460 | <rule>
|
|---|
| 1461 | <condition k="man_made" v="water_well"/>
|
|---|
| 1462 | <icon annotate="true" src="misc/landmark/water_well.png"/>
|
|---|
| 1463 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1464 | </rule>
|
|---|
| 1465 |
|
|---|
| 1466 | <rule>
|
|---|
| 1467 | <condition k="man_made" v="windmill"/>
|
|---|
| 1468 | <icon annotate="true" src="misc/landmark/windmill.png"/>
|
|---|
| 1469 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1470 | </rule>
|
|---|
| 1471 |
|
|---|
| 1472 | <rule>
|
|---|
| 1473 | <condition k="man_made" v="works"/>
|
|---|
| 1474 | <icon annotate="true" src="misc/landmark/works.png"/>
|
|---|
| 1475 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1476 | </rule>
|
|---|
| 1477 |
|
|---|
| 1478 | <rule>
|
|---|
| 1479 | <condition k="man_made" v="water_works"/>
|
|---|
| 1480 | <icon annotate="true" src="misc/landmark/water_works.png"/>
|
|---|
| 1481 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1482 | </rule>
|
|---|
| 1483 |
|
|---|
| 1484 | <!--leisure tags -->
|
|---|
| 1485 |
|
|---|
| 1486 | <rule>
|
|---|
| 1487 | <condition k="leisure" v="sports_centre"/>
|
|---|
| 1488 | <icon annotate="true" src="sport/centre.png"/>
|
|---|
| 1489 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1490 | </rule>
|
|---|
| 1491 |
|
|---|
| 1492 | <rule>
|
|---|
| 1493 | <condition k="leisure" v="golf_course"/>
|
|---|
| 1494 | <icon annotate="true" src="sport/golf.png"/>
|
|---|
| 1495 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1496 | </rule>
|
|---|
| 1497 |
|
|---|
| 1498 | <rule>
|
|---|
| 1499 | <condition k="leisure" v="stadium"/>
|
|---|
| 1500 | <icon annotate="true" src="sport/stadium.png"/>
|
|---|
| 1501 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1502 | </rule>
|
|---|
| 1503 |
|
|---|
| 1504 | <rule>
|
|---|
| 1505 | <condition k="leisure" v="track"/>
|
|---|
| 1506 | <icon annotate="true" src="sport/track.png"/>
|
|---|
| 1507 | <area colour="leisure#c7f1a3" closed="true"/>
|
|---|
| 1508 | </rule>
|
|---|
| 1509 |
|
|---|
| 1510 | <rule>
|
|---|
| 1511 | <condition k="leisure" v="pitch"/>
|
|---|
| 1512 | <icon annotate="true" src="sport/pitch.png"/>
|
|---|
| 1513 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1514 | </rule>
|
|---|
| 1515 |
|
|---|
| 1516 | <rule>
|
|---|
| 1517 | <condition k="leisure" v="water_park"/>
|
|---|
| 1518 | <icon annotate="true" src="leisure/water_park.png"/>
|
|---|
| 1519 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1520 | </rule>
|
|---|
| 1521 |
|
|---|
| 1522 | <rule>
|
|---|
| 1523 | <condition k="leisure" v="marina"/>
|
|---|
| 1524 | <icon annotate="true" src="nautical/marina.png"/>
|
|---|
| 1525 | <area colour="marina#0070cf"/>
|
|---|
| 1526 | </rule>
|
|---|
| 1527 |
|
|---|
| 1528 | <rule>
|
|---|
| 1529 | <condition k="leisure" v="slipway"/>
|
|---|
| 1530 | <icon annotate="true" src="nautical/slipway.png"/>
|
|---|
| 1531 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1532 | </rule>
|
|---|
| 1533 |
|
|---|
| 1534 | <rule>
|
|---|
| 1535 | <condition k="leisure" v="fishing"/>
|
|---|
| 1536 | <icon annotate="true" src="sport/fishing.png"/>
|
|---|
| 1537 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1538 | </rule>
|
|---|
| 1539 |
|
|---|
| 1540 | <rule>
|
|---|
| 1541 | <condition k="leisure" v="nature_reserve"/>
|
|---|
| 1542 | <icon annotate="true" src="leisure/nature_reserve.png"/>
|
|---|
| 1543 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1544 | </rule>
|
|---|
| 1545 |
|
|---|
| 1546 | <rule>
|
|---|
| 1547 | <condition k="leisure" v="park"/>
|
|---|
| 1548 | <icon annotate="true" src="leisure/park.png"/>
|
|---|
| 1549 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1550 | </rule>
|
|---|
| 1551 |
|
|---|
| 1552 | <rule>
|
|---|
| 1553 | <condition k="leisure" v="playground"/>
|
|---|
| 1554 | <icon annotate="true" src="leisure/playground.png"/>
|
|---|
| 1555 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1556 | </rule>
|
|---|
| 1557 |
|
|---|
| 1558 | <rule>
|
|---|
| 1559 | <condition k="leisure" v="garden"/>
|
|---|
| 1560 | <icon annotate="true" src="leisure/garden.png"/>
|
|---|
| 1561 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1562 | </rule>
|
|---|
| 1563 |
|
|---|
| 1564 | <rule>
|
|---|
| 1565 | <condition k="leisure" v="common"/>
|
|---|
| 1566 | <icon annotate="true" src="leisure/common.png"/>
|
|---|
| 1567 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1568 | </rule>
|
|---|
| 1569 |
|
|---|
| 1570 | <rule>
|
|---|
| 1571 | <condition k="leisure" v="swimming_pool"/>
|
|---|
| 1572 | <icon annotate="true" src="sport/pool.png"/>
|
|---|
| 1573 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1574 | </rule>
|
|---|
| 1575 |
|
|---|
| 1576 | <rule>
|
|---|
| 1577 | <condition k="leisure" v="miniature_golf"/>
|
|---|
| 1578 | <icon annotate="true" src="sport/golf.png"/>
|
|---|
| 1579 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1580 | </rule>
|
|---|
| 1581 |
|
|---|
| 1582 | <rule>
|
|---|
| 1583 | <condition k="leisure" v="dog_park"/>
|
|---|
| 1584 | <icon annotate="true" src="leisure/dog.png"/>
|
|---|
| 1585 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1586 | </rule>
|
|---|
| 1587 |
|
|---|
| 1588 | <rule>
|
|---|
| 1589 | <condition k="leisure" v="ice_rink"/>
|
|---|
| 1590 | <icon annotate="true" src="sport/hockey.png"/>
|
|---|
| 1591 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1592 | </rule>
|
|---|
| 1593 |
|
|---|
| 1594 | <rule>
|
|---|
| 1595 | <condition k="leisure" v="sauna"/>
|
|---|
| 1596 | <icon annotate="true" src="leisure/sauna.png"/>
|
|---|
| 1597 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1598 | </rule>
|
|---|
| 1599 |
|
|---|
| 1600 | <!--amenity tags -->
|
|---|
| 1601 |
|
|---|
| 1602 | <rule>
|
|---|
| 1603 | <condition k="amenity" v="pub"/>
|
|---|
| 1604 | <icon annotate="true" src="food/pub.png"/>
|
|---|
| 1605 | <area colour="amenity#ecba52"/>
|
|---|
| 1606 | </rule>
|
|---|
| 1607 |
|
|---|
| 1608 | <rule>
|
|---|
| 1609 | <condition k="amenity" v="biergarten"/>
|
|---|
| 1610 | <icon annotate="true" src="food/biergarten.png"/>
|
|---|
| 1611 | <area colour="amenity#ecba52"/>
|
|---|
| 1612 | </rule>
|
|---|
| 1613 |
|
|---|
| 1614 | <rule>
|
|---|
| 1615 | <condition k="amenity" v="nightclub"/>
|
|---|
| 1616 | <icon annotate="true" src="leisure/nightclub.png"/>
|
|---|
| 1617 | <area colour="amenity#ecba52"/>
|
|---|
| 1618 | </rule>
|
|---|
| 1619 |
|
|---|
| 1620 | <rule>
|
|---|
| 1621 | <condition k="amenity" v="stripclub"/>
|
|---|
| 1622 | <icon annotate="true" src="leisure/stripclub.png"/>
|
|---|
| 1623 | <area colour="amenity#ecba52"/>
|
|---|
| 1624 | </rule>
|
|---|
| 1625 |
|
|---|
| 1626 | <rule>
|
|---|
| 1627 | <condition k="amenity" v="brothel"/>
|
|---|
| 1628 | <icon annotate="true" src="leisure/stripclub.png"/>
|
|---|
| 1629 | <area colour="amenity#ecba52"/>
|
|---|
| 1630 | </rule>
|
|---|
| 1631 |
|
|---|
| 1632 | <rule>
|
|---|
| 1633 | <condition k="amenity" v="cafe"/>
|
|---|
| 1634 | <icon annotate="true" src="food/cafe.png"/>
|
|---|
| 1635 | <area colour="amenity#ecba52"/>
|
|---|
| 1636 | </rule>
|
|---|
| 1637 |
|
|---|
| 1638 | <rule>
|
|---|
| 1639 | <condition k="amenity" v="restaurant"/>
|
|---|
| 1640 | <icon annotate="true" src="food/restaurant.png"/>
|
|---|
| 1641 | <area colour="amenity#ecba52"/>
|
|---|
| 1642 | </rule>
|
|---|
| 1643 |
|
|---|
| 1644 | <rule>
|
|---|
| 1645 | <condition k="amenity" v="food_court"/>
|
|---|
| 1646 | <icon annotate="true" src="food/restaurant.png"/>
|
|---|
| 1647 | <area colour="amenity#ecba52"/>
|
|---|
| 1648 | </rule>
|
|---|
| 1649 |
|
|---|
| 1650 | <rule>
|
|---|
| 1651 | <condition k="amenity" v="fast_food"/>
|
|---|
| 1652 | <icon annotate="true" src="food/fastfood.png"/>
|
|---|
| 1653 | <area colour="amenity#ecba52"/>
|
|---|
| 1654 | </rule>
|
|---|
| 1655 |
|
|---|
| 1656 | <rule>
|
|---|
| 1657 | <condition k="amenity" v="bar"/>
|
|---|
| 1658 | <icon annotate="true" src="food/bar.png"/>
|
|---|
| 1659 | <area colour="amenity#ecba52"/>
|
|---|
| 1660 | </rule>
|
|---|
| 1661 |
|
|---|
| 1662 | <rule>
|
|---|
| 1663 | <condition k="amenity" v="ice_cream"/>
|
|---|
| 1664 | <icon annotate="true" src="food/icecream.png"/>
|
|---|
| 1665 | <area colour="amenity#ecba52"/>
|
|---|
| 1666 | </rule>
|
|---|
| 1667 |
|
|---|
| 1668 | <rule>
|
|---|
| 1669 | <condition k="amenity" v="motorcycle_parking"/>
|
|---|
| 1670 | <icon annotate="true" src="vehicle/parking/motorbike.png" priority="20000"/>
|
|---|
| 1671 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1672 | </rule>
|
|---|
| 1673 |
|
|---|
| 1674 | <rule>
|
|---|
| 1675 | <condition k="amenity" v="bicycle_parking"/>
|
|---|
| 1676 | <icon annotate="true" src="vehicle/parking/bicycle.png" priority="20000"/>
|
|---|
| 1677 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1678 | </rule>
|
|---|
| 1679 |
|
|---|
| 1680 | <rule>
|
|---|
| 1681 | <condition k="parking" v="park_and_ride"/>
|
|---|
| 1682 | <icon annotate="true" src="vehicle/parking/park_ride.png" priority="20000"/>
|
|---|
| 1683 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1684 | </rule>
|
|---|
| 1685 |
|
|---|
| 1686 | <rule>
|
|---|
| 1687 | <condition k="parking" v="multi-storey"/>
|
|---|
| 1688 | <icon annotate="true" src="vehicle/parking/multi-storey.png" priority="10000"/>
|
|---|
| 1689 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1690 | </rule>
|
|---|
| 1691 |
|
|---|
| 1692 | <rule>
|
|---|
| 1693 | <condition k="parking" v="underground"/>
|
|---|
| 1694 | <icon annotate="true" src="vehicle/parking/underground.png" priority="10000"/>
|
|---|
| 1695 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1696 | </rule>
|
|---|
| 1697 |
|
|---|
| 1698 | <rule>
|
|---|
| 1699 | <condition k="parking" v="surface"/>
|
|---|
| 1700 | <icon annotate="true" src="vehicle/parking.png"/>
|
|---|
| 1701 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1702 | </rule>
|
|---|
| 1703 |
|
|---|
| 1704 | <rule>
|
|---|
| 1705 | <condition k="amenity" v="parking"/>
|
|---|
| 1706 | <icon annotate="true" src="vehicle/parking.png"/>
|
|---|
| 1707 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1708 | </rule>
|
|---|
| 1709 |
|
|---|
| 1710 | <rule>
|
|---|
| 1711 | <condition k="amenity" v="bicycle_rental"/>
|
|---|
| 1712 | <icon annotate="true" src="vehicle/rental/bicycle.png"/>
|
|---|
| 1713 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1714 | </rule>
|
|---|
| 1715 |
|
|---|
| 1716 | <rule>
|
|---|
| 1717 | <condition k="amenity" v="car_rental"/>
|
|---|
| 1718 | <icon annotate="true" src="vehicle/rental/car.png"/>
|
|---|
| 1719 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1720 | </rule>
|
|---|
| 1721 |
|
|---|
| 1722 | <rule>
|
|---|
| 1723 | <condition k="amenity" v="car_sharing"/>
|
|---|
| 1724 | <icon annotate="true" src="vehicle/car_sharing.png"/>
|
|---|
| 1725 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1726 | </rule>
|
|---|
| 1727 |
|
|---|
| 1728 | <rule>
|
|---|
| 1729 | <condition k="amenity" v="car_wash"/>
|
|---|
| 1730 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1731 | <icon annotate="true" src="vehicle/car_wash.png"/>
|
|---|
| 1732 | </rule>
|
|---|
| 1733 |
|
|---|
| 1734 | <rule>
|
|---|
| 1735 | <condition k="amenity" v="taxi"/>
|
|---|
| 1736 | <icon annotate="true" src="transport/taxi.png"/>
|
|---|
| 1737 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1738 | </rule>
|
|---|
| 1739 |
|
|---|
| 1740 | <rule>
|
|---|
| 1741 | <condition k="amenity" v="fuel"/>
|
|---|
| 1742 | <icon annotate="true" src="vehicle/fuel.png" priority="10000"/>
|
|---|
| 1743 | <area colour="amenity_traffic#f7efb7" priority="10000"/>
|
|---|
| 1744 | </rule>
|
|---|
| 1745 |
|
|---|
| 1746 | <rule>
|
|---|
| 1747 | <condition k="amenity" v="charging_station"/>
|
|---|
| 1748 | <icon annotate="true" src="accommodation/camping/hookup.png" priority="1000"/>
|
|---|
| 1749 | </rule>
|
|---|
| 1750 |
|
|---|
| 1751 | <rule>
|
|---|
| 1752 | <condition k="amenity" v="grit_bin"/>
|
|---|
| 1753 | <icon annotate="true" src="misc/grit_bin.png"/>
|
|---|
| 1754 | </rule>
|
|---|
| 1755 |
|
|---|
| 1756 | <rule>
|
|---|
| 1757 | <condition k="amenity" v="telephone"/>
|
|---|
| 1758 | <icon annotate="true" src="service/telephone.png"/>
|
|---|
| 1759 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1760 | </rule>
|
|---|
| 1761 |
|
|---|
| 1762 | <rule>
|
|---|
| 1763 | <condition k="amenity" v="clock"/>
|
|---|
| 1764 | <icon annotate="true" src="service/clock.png"/>
|
|---|
| 1765 | </rule>
|
|---|
| 1766 |
|
|---|
| 1767 | <rule>
|
|---|
| 1768 | <condition k="amenity" v="emergency_phone"/>
|
|---|
| 1769 | <icon annotate="true" src="vehicle/emergency_phone.png"/>
|
|---|
| 1770 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1771 | </rule>
|
|---|
| 1772 |
|
|---|
| 1773 | <rule>
|
|---|
| 1774 | <condition k="amenity" v="toilets"/>
|
|---|
| 1775 | <icon annotate="true" src="service/toilets.png"/>
|
|---|
| 1776 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1777 | </rule>
|
|---|
| 1778 |
|
|---|
| 1779 | <rule>
|
|---|
| 1780 | <condition k="amenity" v="recycling"/>
|
|---|
| 1781 | <icon annotate="true" src="service/recycling.png"/>
|
|---|
| 1782 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1783 | </rule>
|
|---|
| 1784 |
|
|---|
| 1785 | <rule>
|
|---|
| 1786 | <condition k="amenity" v="waste_basket"/>
|
|---|
| 1787 | <icon annotate="true" src="service/recycling/trash-bin.png"/>
|
|---|
| 1788 | </rule>
|
|---|
| 1789 |
|
|---|
| 1790 | <rule>
|
|---|
| 1791 | <condition k="amenity" v="public_building"/>
|
|---|
| 1792 | <icon annotate="true" src="service.png"/>
|
|---|
| 1793 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1794 | </rule>
|
|---|
| 1795 |
|
|---|
| 1796 | <rule>
|
|---|
| 1797 | <condition k="amenity" v="embassy"/>
|
|---|
| 1798 | <icon annotate="true" src="service/administration/embassy.png"/>
|
|---|
| 1799 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1800 | </rule>
|
|---|
| 1801 |
|
|---|
| 1802 | <rule>
|
|---|
| 1803 | <condition k="amenity" v="townhall"/>
|
|---|
| 1804 | <icon annotate="true" src="service.png"/>
|
|---|
| 1805 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1806 | </rule>
|
|---|
| 1807 |
|
|---|
| 1808 | <rule>
|
|---|
| 1809 | <condition k="amenity" v="community_centre"/>
|
|---|
| 1810 | <icon annotate="true" src="service/community_centre.png"/>
|
|---|
| 1811 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1812 | </rule>
|
|---|
| 1813 |
|
|---|
| 1814 | <rule>
|
|---|
| 1815 | <condition k="amenity" v="drinking_water"/>
|
|---|
| 1816 | <icon annotate="true" src="food/drinking_water.png"/>
|
|---|
| 1817 | <area colour="light_water#00005f"/>
|
|---|
| 1818 | </rule>
|
|---|
| 1819 |
|
|---|
| 1820 | <rule>
|
|---|
| 1821 | <condition k="amenity" v="fountain"/>
|
|---|
| 1822 | <icon annotate="true" src="misc/landmark/spring.png"/>
|
|---|
| 1823 | <area colour="light_water#00005f"/>
|
|---|
| 1824 | </rule>
|
|---|
| 1825 |
|
|---|
| 1826 | <rule>
|
|---|
| 1827 | <condition k="religion" v="bahai"/>
|
|---|
| 1828 | <icon annotate="true" src="religion/bahai.png"/>
|
|---|
| 1829 | </rule>
|
|---|
| 1830 |
|
|---|
| 1831 | <rule>
|
|---|
| 1832 | <condition k="religion" v="buddhist"/>
|
|---|
| 1833 | <icon annotate="true" src="religion/buddhism.png"/>
|
|---|
| 1834 | </rule>
|
|---|
| 1835 |
|
|---|
| 1836 | <rule>
|
|---|
| 1837 | <condition k="religion" v="christian"/>
|
|---|
| 1838 | <icon annotate="true" src="religion/church.png"/>
|
|---|
| 1839 | </rule>
|
|---|
| 1840 |
|
|---|
| 1841 | <rule>
|
|---|
| 1842 | <condition k="religion" v="hindu"/>
|
|---|
| 1843 | <icon annotate="true" src="religion/hinduism.png"/>
|
|---|
| 1844 | </rule>
|
|---|
| 1845 |
|
|---|
| 1846 | <rule>
|
|---|
| 1847 | <condition k="religion" v="jain"/>
|
|---|
| 1848 | <icon annotate="true" src="religion/jainism.png"/>
|
|---|
| 1849 | </rule>
|
|---|
| 1850 |
|
|---|
| 1851 | <rule>
|
|---|
| 1852 | <condition k="religion" v="jewish"/>
|
|---|
| 1853 | <icon annotate="true" src="religion/jewish.png"/>
|
|---|
| 1854 | </rule>
|
|---|
| 1855 |
|
|---|
| 1856 | <rule>
|
|---|
| 1857 | <condition k="religion" v="muslim"/>
|
|---|
| 1858 | <icon annotate="true" src="religion/muslim.png"/>
|
|---|
| 1859 | </rule>
|
|---|
| 1860 |
|
|---|
| 1861 | <rule>
|
|---|
| 1862 | <condition k="religion" v="sikh"/>
|
|---|
| 1863 | <icon annotate="true" src="religion/sikhism.png"/>
|
|---|
| 1864 | </rule>
|
|---|
| 1865 |
|
|---|
| 1866 | <rule>
|
|---|
| 1867 | <condition k="religion" v="shinto"/>
|
|---|
| 1868 | <icon annotate="true" src="religion/shinto.png"/>
|
|---|
| 1869 | </rule>
|
|---|
| 1870 |
|
|---|
| 1871 | <rule>
|
|---|
| 1872 | <condition k="religion" v="spiritualist"/>
|
|---|
| 1873 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1874 | </rule>
|
|---|
| 1875 |
|
|---|
| 1876 | <rule>
|
|---|
| 1877 | <condition k="religion" v="taoist"/>
|
|---|
| 1878 | <icon annotate="true" src="religion/taoism.png"/>
|
|---|
| 1879 | </rule>
|
|---|
| 1880 |
|
|---|
| 1881 | <rule>
|
|---|
| 1882 | <condition k="religion" v="unitarian"/>
|
|---|
| 1883 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1884 | </rule>
|
|---|
| 1885 |
|
|---|
| 1886 | <rule>
|
|---|
| 1887 | <condition k="religion" v="zoroastrian"/>
|
|---|
| 1888 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1889 | </rule>
|
|---|
| 1890 |
|
|---|
| 1891 | <rule>
|
|---|
| 1892 | <condition k="amenity" v="place_of_worship"/>
|
|---|
| 1893 | <icon annotate="true" src="religion.png" priority="-10000"/>
|
|---|
| 1894 | <area colour="amenity_light#f7efb7" priority="-10000"/>
|
|---|
| 1895 | </rule>
|
|---|
| 1896 |
|
|---|
| 1897 | <rule>
|
|---|
| 1898 | <condition k="amenity" v="grave_yard"/>
|
|---|
| 1899 | <icon annotate="true" src="rendering/landuse/cemetery.png"/>
|
|---|
| 1900 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1901 | </rule>
|
|---|
| 1902 |
|
|---|
| 1903 | <rule>
|
|---|
| 1904 | <condition k="amenity" v="crematorium"/>
|
|---|
| 1905 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1906 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1907 | </rule>
|
|---|
| 1908 |
|
|---|
| 1909 | <rule>
|
|---|
| 1910 | <condition k="amenity" v="post_office"/>
|
|---|
| 1911 | <icon annotate="true" src="service/post_office.png"/>
|
|---|
| 1912 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1913 | </rule>
|
|---|
| 1914 |
|
|---|
| 1915 | <rule>
|
|---|
| 1916 | <condition k="amenity" v="post_box"/>
|
|---|
| 1917 | <icon annotate="true" src="service/post_box.png"/>
|
|---|
| 1918 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1919 | </rule>
|
|---|
| 1920 |
|
|---|
| 1921 | <rule>
|
|---|
| 1922 | <condition k="amenity" v="studio"/>
|
|---|
| 1923 | <icon annotate="true" src="service/studio.png"/>
|
|---|
| 1924 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1925 | </rule>
|
|---|
| 1926 |
|
|---|
| 1927 | <rule>
|
|---|
| 1928 | <condition k="amenity" v="school"/>
|
|---|
| 1929 | <icon annotate="true" src="education/school.png"/>
|
|---|
| 1930 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1931 | </rule>
|
|---|
| 1932 |
|
|---|
| 1933 | <rule>
|
|---|
| 1934 | <condition k="amenity" v="university"/>
|
|---|
| 1935 | <icon annotate="true" src="education/university.png"/>
|
|---|
| 1936 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1937 | </rule>
|
|---|
| 1938 |
|
|---|
| 1939 | <rule>
|
|---|
| 1940 | <condition k="amenity" v="college"/>
|
|---|
| 1941 | <icon annotate="true" src="education/college.png"/>
|
|---|
| 1942 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1943 | </rule>
|
|---|
| 1944 |
|
|---|
| 1945 | <rule>
|
|---|
| 1946 | <condition k="amenity" v="kindergarten"/>
|
|---|
| 1947 | <icon annotate="true" src="education/kindergarten.png"/>
|
|---|
| 1948 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1949 | </rule>
|
|---|
| 1950 |
|
|---|
| 1951 | <rule>
|
|---|
| 1952 | <condition k="amenity" v="driving_school"/>
|
|---|
| 1953 | <icon annotate="true" src="education/driving_school.png"/>
|
|---|
| 1954 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1955 | </rule>
|
|---|
| 1956 |
|
|---|
| 1957 | <rule>
|
|---|
| 1958 | <condition k="amenity" v="pharmacy"/>
|
|---|
| 1959 | <area colour="health#eeeeee"/>
|
|---|
| 1960 | <icon annotate="true" src="health/pharmacy.png"/>
|
|---|
| 1961 | </rule>
|
|---|
| 1962 |
|
|---|
| 1963 | <rule>
|
|---|
| 1964 | <condition k="amenity" v="hospital"/>
|
|---|
| 1965 | <area colour="health#eeeeee"/>
|
|---|
| 1966 | <icon annotate="true" src="health/hospital.png"/>
|
|---|
| 1967 | </rule>
|
|---|
| 1968 |
|
|---|
| 1969 | <rule>
|
|---|
| 1970 | <condition k="amenity" v="nursery"/>
|
|---|
| 1971 | <area colour="health#eeeeee"/>
|
|---|
| 1972 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1973 | </rule>
|
|---|
| 1974 |
|
|---|
| 1975 | <rule>
|
|---|
| 1976 | <condition k="amenity" v="baby_hatch"/>
|
|---|
| 1977 | <icon annotate="true" src="health/baby_hatch.png"/>
|
|---|
| 1978 | <area colour="health#eeeeee"/>
|
|---|
| 1979 | </rule>
|
|---|
| 1980 |
|
|---|
| 1981 | <rule>
|
|---|
| 1982 | <condition k="amenity" v="doctors"/>
|
|---|
| 1983 | <area colour="health#eeeeee"/>
|
|---|
| 1984 | <icon annotate="true" src="health/doctor.png"/>
|
|---|
| 1985 | </rule>
|
|---|
| 1986 |
|
|---|
| 1987 | <rule>
|
|---|
| 1988 | <condition k="amenity" v="dentist"/>
|
|---|
| 1989 | <area colour="health#eeeeee"/>
|
|---|
| 1990 | <icon annotate="true" src="health/dentist.png"/>
|
|---|
| 1991 | </rule>
|
|---|
| 1992 |
|
|---|
| 1993 | <rule>
|
|---|
| 1994 | <condition k="amenity" v="veterinary"/>
|
|---|
| 1995 | <area colour="health#eeeeee"/>
|
|---|
| 1996 | <icon annotate="true" src="health/veterinary.png"/>
|
|---|
| 1997 | </rule>
|
|---|
| 1998 |
|
|---|
| 1999 | <rule>
|
|---|
| 2000 | <condition k="amenity" v="library"/>
|
|---|
| 2001 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2002 | <icon annotate="true" src="shop/rental/library.png"/>
|
|---|
| 2003 | </rule>
|
|---|
| 2004 |
|
|---|
| 2005 | <rule>
|
|---|
| 2006 | <condition k="amenity" v="police"/>
|
|---|
| 2007 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2008 | <icon annotate="true" src="service/police.png"/>
|
|---|
| 2009 | </rule>
|
|---|
| 2010 |
|
|---|
| 2011 | <rule>
|
|---|
| 2012 | <condition k="amenity" v="fire_station"/>
|
|---|
| 2013 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2014 | <icon annotate="true" src="service/firebrigade.png"/>
|
|---|
| 2015 | </rule>
|
|---|
| 2016 |
|
|---|
| 2017 | <rule>
|
|---|
| 2018 | <condition k="amenity" v="bus_station"/>
|
|---|
| 2019 | <icon annotate="true" src="transport/bus.png"/>
|
|---|
| 2020 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2021 | </rule>
|
|---|
| 2022 |
|
|---|
| 2023 | <rule>
|
|---|
| 2024 | <condition k="amenity" v="ferry_terminal"/>
|
|---|
| 2025 | <icon annotate="true" src="nautical/ferry.png"/>
|
|---|
| 2026 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2027 | </rule>
|
|---|
| 2028 |
|
|---|
| 2029 | <rule>
|
|---|
| 2030 | <condition k="amenity" v="theatre"/>
|
|---|
| 2031 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2032 | <icon annotate="true" src="leisure/theater.png"/>
|
|---|
| 2033 | </rule>
|
|---|
| 2034 |
|
|---|
| 2035 | <rule>
|
|---|
| 2036 | <condition k="amenity" v="cinema"/>
|
|---|
| 2037 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2038 | <icon annotate="true" src="leisure/cinema.png"/>
|
|---|
| 2039 | </rule>
|
|---|
| 2040 |
|
|---|
| 2041 | <rule>
|
|---|
| 2042 | <condition k="amenity" v="arts_centre"/>
|
|---|
| 2043 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2044 | <icon annotate="true" src="service/arts_centre.png"/>
|
|---|
| 2045 | </rule>
|
|---|
| 2046 |
|
|---|
| 2047 | <rule>
|
|---|
| 2048 | <condition k="amenity" v="courthouse"/>
|
|---|
| 2049 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2050 | <icon annotate="true" src="service/administration/court_of_law.png"/>
|
|---|
| 2051 | </rule>
|
|---|
| 2052 |
|
|---|
| 2053 | <rule>
|
|---|
| 2054 | <condition k="amenity" v="prison"/>
|
|---|
| 2055 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2056 | <icon annotate="true" src="service/administration/prison.png"/>
|
|---|
| 2057 | </rule>
|
|---|
| 2058 |
|
|---|
| 2059 | <rule>
|
|---|
| 2060 | <condition k="amenity" v="bank"/>
|
|---|
| 2061 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2062 | <icon annotate="true" src="money/bank.png"/>
|
|---|
| 2063 | </rule>
|
|---|
| 2064 |
|
|---|
| 2065 | <rule>
|
|---|
| 2066 | <condition k="amenity" v="bureau_de_change"/>
|
|---|
| 2067 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2068 | <icon annotate="true" src="money/exchange.png"/>
|
|---|
| 2069 | </rule>
|
|---|
| 2070 |
|
|---|
| 2071 | <rule>
|
|---|
| 2072 | <condition k="amenity" v="atm"/>
|
|---|
| 2073 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2074 | <icon annotate="true" src="money/atm.png"/>
|
|---|
| 2075 | </rule>
|
|---|
| 2076 |
|
|---|
| 2077 | <rule>
|
|---|
| 2078 | <condition k="amenity" v="bench"/>
|
|---|
| 2079 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2080 | <icon annotate="true" src="leisure/bench.png"/>
|
|---|
| 2081 | </rule>
|
|---|
| 2082 |
|
|---|
| 2083 | <rule>
|
|---|
| 2084 | <condition k="amenity" v="bbq"/>
|
|---|
| 2085 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2086 | <icon annotate="true" src="leisure/bbq.png"/>
|
|---|
| 2087 | </rule>
|
|---|
| 2088 |
|
|---|
| 2089 | <rule>
|
|---|
| 2090 | <condition k="emergency" v="fire_hydrant"/>
|
|---|
| 2091 | <icon annotate="true" src="service/fire_hydrant.png"/>
|
|---|
| 2092 | </rule>
|
|---|
| 2093 |
|
|---|
| 2094 | <rule>
|
|---|
| 2095 | <condition k="amenity" v="shelter"/>
|
|---|
| 2096 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2097 | <icon annotate="true" src="accommodation/shelter.png"/>
|
|---|
| 2098 | </rule>
|
|---|
| 2099 |
|
|---|
| 2100 | <rule>
|
|---|
| 2101 | <condition k="amenity" v="hunting_stand"/>
|
|---|
| 2102 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2103 | <icon annotate="true" src="hunting_stand.png"/>
|
|---|
| 2104 | </rule>
|
|---|
| 2105 |
|
|---|
| 2106 | <rule>
|
|---|
| 2107 | <condition k="amenity" v="marketplace"/>
|
|---|
| 2108 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2109 | <icon annotate="true" src="place/marketplace.png"/>
|
|---|
| 2110 | </rule>
|
|---|
| 2111 |
|
|---|
| 2112 | <rule>
|
|---|
| 2113 | <condition k="amenity" v="wlan"/>
|
|---|
| 2114 | <icon annotate="true" src="wlan.png"/>
|
|---|
| 2115 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2116 | </rule>
|
|---|
| 2117 |
|
|---|
| 2118 | <rule>
|
|---|
| 2119 | <condition k="vending" v="excrement_bags"/>
|
|---|
| 2120 | <icon annotate="true" src="service/excrement_bags.png"/>
|
|---|
| 2121 | </rule>
|
|---|
| 2122 |
|
|---|
| 2123 | <rule>
|
|---|
| 2124 | <condition k="amenity" v="vending_machine"/>
|
|---|
| 2125 | <icon src="transport/ticket-machine.png" priority="-10"/>
|
|---|
| 2126 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2127 | </rule>
|
|---|
| 2128 |
|
|---|
| 2129 | <!--shop tags -->
|
|---|
| 2130 |
|
|---|
| 2131 | <rule>
|
|---|
| 2132 | <condition k="shop" v="supermarket"/>
|
|---|
| 2133 | <icon annotate="true" src="shop/supermarket.png"/>
|
|---|
| 2134 | <area colour="shop#00005f"/>
|
|---|
| 2135 | </rule>
|
|---|
| 2136 |
|
|---|
| 2137 | <rule>
|
|---|
| 2138 | <condition k="shop" v="convenience"/>
|
|---|
| 2139 | <icon annotate="true" src="shop/convenience.png"/>
|
|---|
| 2140 | <area colour="shop#00005f"/>
|
|---|
| 2141 | </rule>
|
|---|
| 2142 |
|
|---|
| 2143 | <rule>
|
|---|
| 2144 | <condition k="shop" v="bakery"/>
|
|---|
| 2145 | <icon annotate="true" src="shop/groceries/bakery.png"/>
|
|---|
| 2146 | <area colour="shop#00005f"/>
|
|---|
| 2147 | </rule>
|
|---|
| 2148 |
|
|---|
| 2149 | <rule>
|
|---|
| 2150 | <condition k="shop" v="butcher"/>
|
|---|
| 2151 | <icon annotate="true" src="shop/groceries/butcher.png"/>
|
|---|
| 2152 | <area colour="shop#00005f"/>
|
|---|
| 2153 | </rule>
|
|---|
| 2154 |
|
|---|
| 2155 | <rule>
|
|---|
| 2156 | <condition k="shop" v="bicycle"/>
|
|---|
| 2157 | <icon annotate="true" src="sport/bicycle.png"/>
|
|---|
| 2158 | <area colour="shop#00005f"/>
|
|---|
| 2159 | </rule>
|
|---|
| 2160 |
|
|---|
| 2161 | <rule>
|
|---|
| 2162 | <condition k="shop" v="doityourself"/>
|
|---|
| 2163 | <icon annotate="true" src="shop/diy_store.png"/>
|
|---|
| 2164 | <area colour="shop#00005f"/>
|
|---|
| 2165 | </rule>
|
|---|
| 2166 |
|
|---|
| 2167 | <rule>
|
|---|
| 2168 | <condition k="shop" v="dry_cleaning"/>
|
|---|
| 2169 | <icon annotate="true" src="shop/laundry.png"/>
|
|---|
| 2170 | <area colour="shop#00005f"/>
|
|---|
| 2171 | </rule>
|
|---|
| 2172 |
|
|---|
| 2173 | <rule>
|
|---|
| 2174 | <condition k="shop" v="laundry"/>
|
|---|
| 2175 | <icon annotate="true" src="shop/laundry.png"/>
|
|---|
| 2176 | <area colour="shop#00005f"/>
|
|---|
| 2177 | </rule>
|
|---|
| 2178 |
|
|---|
| 2179 | <rule>
|
|---|
| 2180 | <condition k="shop" v="outdoor"/>
|
|---|
| 2181 | <icon annotate="true" src="shop/sports/outdoor.png"/>
|
|---|
| 2182 | <area colour="shop#00005f"/>
|
|---|
| 2183 | </rule>
|
|---|
| 2184 |
|
|---|
| 2185 | <rule>
|
|---|
| 2186 | <condition k="shop" v="kiosk"/>
|
|---|
| 2187 | <icon annotate="true" src="shop/kiosk.png"/>
|
|---|
| 2188 | <area colour="shop#00005f"/>
|
|---|
| 2189 | </rule>
|
|---|
| 2190 |
|
|---|
| 2191 | <rule>
|
|---|
| 2192 | <condition k="shop" v="alcohol"/>
|
|---|
| 2193 | <icon annotate="true" src="shop/beverages.png"/>
|
|---|
| 2194 | <area colour="shop#00005f"/>
|
|---|
| 2195 | </rule>
|
|---|
| 2196 |
|
|---|
| 2197 | <rule>
|
|---|
| 2198 | <condition k="shop" v="beverages"/>
|
|---|
| 2199 | <icon annotate="true" src="shop/beverages.png"/>
|
|---|
| 2200 | <area colour="shop#00005f"/>
|
|---|
| 2201 | </rule>
|
|---|
| 2202 |
|
|---|
| 2203 | <rule>
|
|---|
| 2204 | <condition k="shop" v="books"/>
|
|---|
| 2205 | <icon annotate="true" src="shop/rental/library.png"/>
|
|---|
| 2206 | <area colour="shop#00005f"/>
|
|---|
| 2207 | </rule>
|
|---|
| 2208 |
|
|---|
| 2209 | <rule>
|
|---|
| 2210 | <condition k="shop" v="boutique"/>
|
|---|
| 2211 | <icon annotate="true" src="shop/boutique.png"/>
|
|---|
| 2212 | <area colour="shop#00005f"/>
|
|---|
| 2213 | </rule>
|
|---|
| 2214 |
|
|---|
| 2215 | <rule>
|
|---|
| 2216 | <condition k="shop" v="car"/>
|
|---|
| 2217 | <icon annotate="true" src="transport/car.png"/>
|
|---|
| 2218 | <area colour="shop#00005f"/>
|
|---|
| 2219 | </rule>
|
|---|
| 2220 |
|
|---|
| 2221 | <rule>
|
|---|
| 2222 | <condition k="shop" v="car_dealer"/>
|
|---|
| 2223 | <icon annotate="true" src="transport/car.png"/>
|
|---|
| 2224 | <area colour="shop#00005f"/>
|
|---|
| 2225 | </rule>
|
|---|
| 2226 |
|
|---|
| 2227 | <rule>
|
|---|
| 2228 | <condition k="shop" v="car_repair"/>
|
|---|
| 2229 | <icon annotate="true" src="vehicle/repair_shop.png"/>
|
|---|
| 2230 | <area colour="shop#00005f"/>
|
|---|
| 2231 | </rule>
|
|---|
| 2232 |
|
|---|
| 2233 | <rule>
|
|---|
| 2234 | <condition k="shop" v="tyres"/>
|
|---|
| 2235 | <icon annotate="true" src="vehicle/tyres.png"/>
|
|---|
| 2236 | <area colour="shop#00005f"/>
|
|---|
| 2237 | </rule>
|
|---|
| 2238 |
|
|---|
| 2239 | <rule>
|
|---|
| 2240 | <condition k="shop" v="chemist"/>
|
|---|
| 2241 | <icon annotate="true" src="shop/chemist.png"/>
|
|---|
| 2242 | <area colour="shop#00005f"/>
|
|---|
| 2243 | </rule>
|
|---|
| 2244 |
|
|---|
| 2245 | <rule>
|
|---|
| 2246 | <condition k="shop" v="clothes"/>
|
|---|
| 2247 | <icon annotate="true" src="shop/clothes.png"/>
|
|---|
| 2248 | <area colour="shop#00005f"/>
|
|---|
| 2249 | </rule>
|
|---|
| 2250 |
|
|---|
| 2251 | <rule>
|
|---|
| 2252 | <condition k="shop" v="computer"/>
|
|---|
| 2253 | <icon annotate="true" src="shop/computer.png"/>
|
|---|
| 2254 | <area colour="shop#00005f"/>
|
|---|
| 2255 | </rule>
|
|---|
| 2256 |
|
|---|
| 2257 | <rule>
|
|---|
| 2258 | <condition k="shop" v="confectionery"/>
|
|---|
| 2259 | <icon annotate="true" src="shop/groceries/confectionery.png"/>
|
|---|
| 2260 | <area colour="shop#00005f"/>
|
|---|
| 2261 | </rule>
|
|---|
| 2262 |
|
|---|
| 2263 | <rule>
|
|---|
| 2264 | <condition k="shop" v="copyshop"/>
|
|---|
| 2265 | <icon annotate="true" src="shop/copyshop.png"/>
|
|---|
| 2266 | <area colour="shop#00005f"/>
|
|---|
| 2267 | </rule>
|
|---|
| 2268 |
|
|---|
| 2269 | <rule>
|
|---|
| 2270 | <condition k="shop" v="curtain"/>
|
|---|
| 2271 | <icon annotate="true" src="shop/curtain.png"/>
|
|---|
| 2272 | <area colour="shop#00005f"/>
|
|---|
| 2273 | </rule>
|
|---|
| 2274 |
|
|---|
| 2275 | <rule>
|
|---|
| 2276 | <condition k="shop" v="cycle_repair"/>
|
|---|
| 2277 | <icon annotate="true" src="sport/bicycle.png"/>
|
|---|
| 2278 | <area colour="shop#00005f"/>
|
|---|
| 2279 | </rule>
|
|---|
| 2280 |
|
|---|
| 2281 | <rule>
|
|---|
| 2282 | <condition k="shop" v="department_store"/>
|
|---|
| 2283 | <icon annotate="true" src="shop/mall.png"/>
|
|---|
| 2284 | <area colour="shop#00005f"/>
|
|---|
| 2285 | </rule>
|
|---|
| 2286 |
|
|---|
| 2287 | <rule>
|
|---|
| 2288 | <condition k="shop" v="deli"/>
|
|---|
| 2289 | <icon annotate="true" src="shop/groceries/deli.png"/>
|
|---|
| 2290 | <area colour="shop#00005f"/>
|
|---|
| 2291 | </rule>
|
|---|
| 2292 |
|
|---|
| 2293 | <rule>
|
|---|
| 2294 | <condition k="shop" v="electronics"/>
|
|---|
| 2295 | <icon annotate="true" src="shop/electronics.png"/>
|
|---|
| 2296 | <area colour="shop#00005f"/>
|
|---|
| 2297 | </rule>
|
|---|
| 2298 |
|
|---|
| 2299 | <rule>
|
|---|
| 2300 | <condition k="shop" v="erotic"/>
|
|---|
| 2301 | <icon annotate="true" src="shop/erotic.png"/>
|
|---|
| 2302 | <area colour="shop#00005f"/>
|
|---|
| 2303 | </rule>
|
|---|
| 2304 |
|
|---|
| 2305 | <rule>
|
|---|
| 2306 | <condition k="shop" v="furniture"/>
|
|---|
| 2307 | <icon annotate="true" src="shop/furniture.png"/>
|
|---|
| 2308 | <area colour="shop#00005f"/>
|
|---|
| 2309 | </rule>
|
|---|
| 2310 |
|
|---|
| 2311 | <rule>
|
|---|
| 2312 | <condition k="shop" v="fabric"/>
|
|---|
| 2313 | <icon annotate="true" src="shop/fabric.png"/>
|
|---|
| 2314 | <area colour="shop#00005f"/>
|
|---|
| 2315 | </rule>
|
|---|
| 2316 |
|
|---|
| 2317 | <rule>
|
|---|
| 2318 | <condition k="shop" v="florist"/>
|
|---|
| 2319 | <icon annotate="true" src="shop/florist.png"/>
|
|---|
| 2320 | <area colour="shop#00005f"/>
|
|---|
| 2321 | </rule>
|
|---|
| 2322 |
|
|---|
| 2323 | <rule>
|
|---|
| 2324 | <condition k="shop" v="frame"/>
|
|---|
| 2325 | <icon annotate="true" src="shop/frame.png"/>
|
|---|
| 2326 | <area colour="shop#00005f"/>
|
|---|
| 2327 | </rule>
|
|---|
| 2328 |
|
|---|
| 2329 | <rule>
|
|---|
| 2330 | <condition k="shop" v="greengrocer"/>
|
|---|
| 2331 | <icon annotate="true" src="shop/groceries/greengrocer.png"/>
|
|---|
| 2332 | <area colour="shop#00005f"/>
|
|---|
| 2333 | </rule>
|
|---|
| 2334 |
|
|---|
| 2335 | <rule>
|
|---|
| 2336 | <!-- superseeded by greengrocer -->
|
|---|
| 2337 | <condition k="shop" v="groceries"/>
|
|---|
| 2338 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 2339 | <area colour="deprecated#ff0000"/>
|
|---|
| 2340 | </rule>
|
|---|
| 2341 |
|
|---|
| 2342 | <rule>
|
|---|
| 2343 | <condition k="shop" v="garden_centre"/>
|
|---|
| 2344 | <icon annotate="true" src="shop/garden_centre.png"/>
|
|---|
| 2345 | <area colour="shop#00005f"/>
|
|---|
| 2346 | </rule>
|
|---|
| 2347 |
|
|---|
| 2348 | <rule>
|
|---|
| 2349 | <condition k="shop" v="hairdresser"/>
|
|---|
| 2350 | <icon annotate="true" src="shop/hairdresser.png"/>
|
|---|
| 2351 | <area colour="shop#00005f"/>
|
|---|
| 2352 | </rule>
|
|---|
| 2353 |
|
|---|
| 2354 | <rule>
|
|---|
| 2355 | <condition k="shop" v="hardware"/>
|
|---|
| 2356 | <icon annotate="true" src="shop/hardware.png"/>
|
|---|
| 2357 | <area colour="shop#00005f"/>
|
|---|
| 2358 | </rule>
|
|---|
| 2359 |
|
|---|
| 2360 | <rule>
|
|---|
| 2361 | <condition k="shop" v="hearing_aids"/>
|
|---|
| 2362 | <icon annotate="true" src="shop/hearing_aids.png"/>
|
|---|
| 2363 | <area colour="shop#00005f"/>
|
|---|
| 2364 | </rule>
|
|---|
| 2365 |
|
|---|
| 2366 | <rule>
|
|---|
| 2367 | <condition k="shop" v="hifi"/>
|
|---|
| 2368 | <icon annotate="true" src="shop/hifi.png"/>
|
|---|
| 2369 | <area colour="shop#00005f"/>
|
|---|
| 2370 | </rule>
|
|---|
| 2371 |
|
|---|
| 2372 | <rule>
|
|---|
| 2373 | <condition k="shop" v="jewelry"/>
|
|---|
| 2374 | <icon annotate="true" src="shop/jewelry.png"/>
|
|---|
| 2375 | <area colour="shop#00005f"/>
|
|---|
| 2376 | </rule>
|
|---|
| 2377 |
|
|---|
| 2378 | <rule>
|
|---|
| 2379 | <condition k="shop" v="kitchen"/>
|
|---|
| 2380 | <icon annotate="true" src="shop/kitchen.png"/>
|
|---|
| 2381 | <area colour="shop#00005f"/>
|
|---|
| 2382 | </rule>
|
|---|
| 2383 |
|
|---|
| 2384 | <rule>
|
|---|
| 2385 | <condition k="shop" v="mall"/>
|
|---|
| 2386 | <icon annotate="true" src="shop/mall.png"/>
|
|---|
| 2387 | <area colour="shop#00005f"/>
|
|---|
| 2388 | </rule>
|
|---|
| 2389 |
|
|---|
| 2390 | <rule>
|
|---|
| 2391 | <condition k="shop" v="mobile_phone"/>
|
|---|
| 2392 | <icon annotate="true" src="shop/mobile_phone.png"/>
|
|---|
| 2393 | <area colour="shop#00005f"/>
|
|---|
| 2394 | </rule>
|
|---|
| 2395 |
|
|---|
| 2396 | <rule>
|
|---|
| 2397 | <condition k="shop" v="motorcycle"/>
|
|---|
| 2398 | <icon annotate="true" src="vehicle/motorbike.png"/>
|
|---|
| 2399 | <area colour="shop#00005f"/>
|
|---|
| 2400 | </rule>
|
|---|
| 2401 |
|
|---|
| 2402 | <rule>
|
|---|
| 2403 | <condition k="shop" v="musical_instrument"/>
|
|---|
| 2404 | <icon annotate="true" src="shop/musical_instrument.png"/>
|
|---|
| 2405 | <area colour="shop#00005f"/>
|
|---|
| 2406 | </rule>
|
|---|
| 2407 |
|
|---|
| 2408 | <rule>
|
|---|
| 2409 | <condition k="shop" v="newsagent"/>
|
|---|
| 2410 | <icon annotate="true" src="shop/kiosk.png"/>
|
|---|
| 2411 | <area colour="shop#00005f"/>
|
|---|
| 2412 | </rule>
|
|---|
| 2413 |
|
|---|
| 2414 | <rule>
|
|---|
| 2415 | <condition k="shop" v="organic"/>
|
|---|
| 2416 | <icon annotate="true" src="shop/groceries/fruits.png"/>
|
|---|
| 2417 | <area colour="shop#00005f"/>
|
|---|
| 2418 | </rule>
|
|---|
| 2419 |
|
|---|
| 2420 | <rule>
|
|---|
| 2421 | <condition k="shop" v="optician"/>
|
|---|
| 2422 | <icon annotate="true" src="shop/optician.png"/>
|
|---|
| 2423 | <area colour="shop#00005f"/>
|
|---|
| 2424 | </rule>
|
|---|
| 2425 |
|
|---|
| 2426 | <rule>
|
|---|
| 2427 | <condition k="shop" v="paint"/>
|
|---|
| 2428 | <icon annotate="true" src="shop/paint.png"/>
|
|---|
| 2429 | <area colour="shop#00005f"/>
|
|---|
| 2430 | </rule>
|
|---|
| 2431 |
|
|---|
| 2432 | <rule>
|
|---|
| 2433 | <condition k="shop" v="seafood"/>
|
|---|
| 2434 | <icon annotate="true" src="shop/groceries/seafood.png"/>
|
|---|
| 2435 | <area colour="shop#00005f"/>
|
|---|
| 2436 | </rule>
|
|---|
| 2437 |
|
|---|
| 2438 | <rule>
|
|---|
| 2439 | <condition k="shop" v="shoes"/>
|
|---|
| 2440 | <icon annotate="true" src="shop/shoes.png"/>
|
|---|
| 2441 | <area colour="shop#00005f"/>
|
|---|
| 2442 | </rule>
|
|---|
| 2443 |
|
|---|
| 2444 | <rule>
|
|---|
| 2445 | <condition k="shop" v="sports"/>
|
|---|
| 2446 | <icon annotate="true" src="sport/multi.png"/>
|
|---|
| 2447 | <area colour="shop#00005f"/>
|
|---|
| 2448 | </rule>
|
|---|
| 2449 |
|
|---|
| 2450 | <rule>
|
|---|
| 2451 | <condition k="shop" v="stationery"/>
|
|---|
| 2452 | <icon annotate="true" src="shop/stationery.png"/>
|
|---|
| 2453 | <area colour="shop#00005f"/>
|
|---|
| 2454 | </rule>
|
|---|
| 2455 |
|
|---|
| 2456 | <rule>
|
|---|
| 2457 | <condition k="shop" v="tailor"/>
|
|---|
| 2458 | <icon annotate="true" src="shop/tailor.png"/>
|
|---|
| 2459 | <area colour="shop#00005f"/>
|
|---|
| 2460 | </rule>
|
|---|
| 2461 |
|
|---|
| 2462 | <rule>
|
|---|
| 2463 | <condition k="shop" v="travel_agency"/>
|
|---|
| 2464 | <icon annotate="true" src="place/island.png"/>
|
|---|
| 2465 | <area colour="shop#00005f"/>
|
|---|
| 2466 | </rule>
|
|---|
| 2467 |
|
|---|
| 2468 | <rule>
|
|---|
| 2469 | <condition k="shop" v="toys"/>
|
|---|
| 2470 | <icon annotate="true" src="shop/toys.png"/>
|
|---|
| 2471 | <area colour="shop#00005f"/>
|
|---|
| 2472 | </rule>
|
|---|
| 2473 |
|
|---|
| 2474 | <rule>
|
|---|
| 2475 | <condition k="shop" v="vacuum_cleaner"/>
|
|---|
| 2476 | <icon annotate="true" src="shop/vacuum_cleaner.png"/>
|
|---|
| 2477 | <area colour="shop#00005f"/>
|
|---|
| 2478 | </rule>
|
|---|
| 2479 |
|
|---|
| 2480 | <rule>
|
|---|
| 2481 | <condition k="shop" v="variety_store"/>
|
|---|
| 2482 | <icon annotate="true" src="shop/variety_store.png"/>
|
|---|
| 2483 | <area colour="shop#00005f"/>
|
|---|
| 2484 | </rule>
|
|---|
| 2485 |
|
|---|
| 2486 | <rule>
|
|---|
| 2487 | <condition k="shop" v="video"/>
|
|---|
| 2488 | <icon annotate="true" src="shop/video.png"/>
|
|---|
| 2489 | <area colour="shop#00005f"/>
|
|---|
| 2490 | </rule>
|
|---|
| 2491 |
|
|---|
| 2492 | <!-- duplicate of shopping_centre? -->
|
|---|
| 2493 | <rule>
|
|---|
| 2494 | <condition k="shop" v="shopping_centre"/>
|
|---|
| 2495 | <icon annotate="true" src="shop/mall.png"/>
|
|---|
| 2496 | <area colour="shop#00005f"/>
|
|---|
| 2497 | </rule>
|
|---|
| 2498 |
|
|---|
| 2499 | <!--tourism tags -->
|
|---|
| 2500 |
|
|---|
| 2501 | <rule>
|
|---|
| 2502 | <condition k="tourism" v="hotel"/>
|
|---|
| 2503 | <icon annotate="true" src="accommodation.png"/>
|
|---|
| 2504 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2505 | </rule>
|
|---|
| 2506 |
|
|---|
| 2507 | <rule>
|
|---|
| 2508 | <condition k="tourism" v="motel"/>
|
|---|
| 2509 | <icon annotate="true" src="accommodation/motel.png"/>
|
|---|
| 2510 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2511 | </rule>
|
|---|
| 2512 |
|
|---|
| 2513 | <rule>
|
|---|
| 2514 | <condition k="tourism" v="guest_house"/>
|
|---|
| 2515 | <icon annotate="true" src="accommodation/guest_house.png"/>
|
|---|
| 2516 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2517 | </rule>
|
|---|
| 2518 |
|
|---|
| 2519 | <rule>
|
|---|
| 2520 | <condition k="tourism" v="hostel"/>
|
|---|
| 2521 | <icon annotate="true" src="accommodation/hostel.png"/>
|
|---|
| 2522 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2523 | </rule>
|
|---|
| 2524 |
|
|---|
| 2525 | <rule>
|
|---|
| 2526 | <condition k="tourism" v="chalet"/>
|
|---|
| 2527 | <icon annotate="true" src="accommodation/chalet.png"/>
|
|---|
| 2528 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2529 | </rule>
|
|---|
| 2530 |
|
|---|
| 2531 | <rule>
|
|---|
| 2532 | <condition k="tourism" v="alpine_hut"/>
|
|---|
| 2533 | <icon annotate="true" src="accommodation/alpine_hut.png"/>
|
|---|
| 2534 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2535 | </rule>
|
|---|
| 2536 |
|
|---|
| 2537 | <rule>
|
|---|
| 2538 | <condition k="tourism" v="camp_site"/>
|
|---|
| 2539 | <icon annotate="true" src="accommodation/camping.png"/>
|
|---|
| 2540 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2541 | </rule>
|
|---|
| 2542 |
|
|---|
| 2543 | <rule>
|
|---|
| 2544 | <condition k="tourism" v="caravan_site"/>
|
|---|
| 2545 | <icon annotate="true" src="accommodation/camping/caravan.png"/>
|
|---|
| 2546 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2547 | </rule>
|
|---|
| 2548 |
|
|---|
| 2549 | <rule>
|
|---|
| 2550 | <condition k="tourism" v="picnic_site"/>
|
|---|
| 2551 | <icon annotate="true" src="leisure/picnic.png"/>
|
|---|
| 2552 | <area colour="tourism#e180a2"/>
|
|---|
| 2553 | </rule>
|
|---|
| 2554 |
|
|---|
| 2555 | <rule>
|
|---|
| 2556 | <condition k="tourism" v="viewpoint"/>
|
|---|
| 2557 | <icon annotate="true" src="sightseeing/viewpoint.png"/>
|
|---|
| 2558 | <area colour="tourism#e180a2"/>
|
|---|
| 2559 | </rule>
|
|---|
| 2560 |
|
|---|
| 2561 | <rule>
|
|---|
| 2562 | <condition k="tourism" v="theme_park"/>
|
|---|
| 2563 | <icon annotate="true" src="leisure/theme_park.png"/>
|
|---|
| 2564 | <area colour="tourism#e180a2"/>
|
|---|
| 2565 | </rule>
|
|---|
| 2566 |
|
|---|
| 2567 | <rule>
|
|---|
| 2568 | <condition k="tourism" v="attraction"/>
|
|---|
| 2569 | <icon annotate="true" src="sightseeing.png"/>
|
|---|
| 2570 | <area colour="tourism#e180a2"/>
|
|---|
| 2571 | </rule>
|
|---|
| 2572 |
|
|---|
| 2573 | <rule>
|
|---|
| 2574 | <condition k="tourism" v="zoo"/>
|
|---|
| 2575 | <icon annotate="true" src="leisure/zoo.png"/>
|
|---|
| 2576 | <area colour="tourism#e180a2"/>
|
|---|
| 2577 | </rule>
|
|---|
| 2578 |
|
|---|
| 2579 | <rule>
|
|---|
| 2580 | <condition k="tourism" v="artwork"/>
|
|---|
| 2581 | <icon annotate="true" src="service/arts_centre.png"/>
|
|---|
| 2582 | <line width="2" colour="tourism#e180a2"/>
|
|---|
| 2583 | <area colour="tourism#e180a2"/>
|
|---|
| 2584 | </rule>
|
|---|
| 2585 |
|
|---|
| 2586 | <rule>
|
|---|
| 2587 | <condition k="tourism" v="museum"/>
|
|---|
| 2588 | <icon annotate="true" src="sightseeing/museum.png"/>
|
|---|
| 2589 | <area colour="tourism#e180a2"/>
|
|---|
| 2590 | </rule>
|
|---|
| 2591 |
|
|---|
| 2592 | <!-- information tags -->
|
|---|
| 2593 | <rule>
|
|---|
| 2594 | <condition k="information" v="guidepost"/>
|
|---|
| 2595 | <icon annotate="true" src="misc/information/guidepost.png" priority="10"/>
|
|---|
| 2596 | </rule>
|
|---|
| 2597 |
|
|---|
| 2598 | <rule>
|
|---|
| 2599 | <condition k="information" v="office"/>
|
|---|
| 2600 | <icon annotate="true" src="misc/information/informationoffice.png" priority="10"/>
|
|---|
| 2601 | <area colour="tourism#e180a2"/>
|
|---|
| 2602 | </rule>
|
|---|
| 2603 |
|
|---|
| 2604 | <rule>
|
|---|
| 2605 | <condition k="information" v="map"/>
|
|---|
| 2606 | <icon annotate="true" src="misc/information/map.png" priority="10"/>
|
|---|
| 2607 | </rule>
|
|---|
| 2608 |
|
|---|
| 2609 | <rule>
|
|---|
| 2610 | <condition k="information" v="board"/>
|
|---|
| 2611 | <icon annotate="true" src="misc/information/board.png" priority="10"/>
|
|---|
| 2612 | </rule>
|
|---|
| 2613 |
|
|---|
| 2614 | <rule>
|
|---|
| 2615 | <condition k="tourism" v="information"/>
|
|---|
| 2616 | <icon annotate="true" src="misc/information.png"/>
|
|---|
| 2617 | <area colour="tourism#e180a2"/>
|
|---|
| 2618 | </rule>
|
|---|
| 2619 |
|
|---|
| 2620 | <!--historic tags -->
|
|---|
| 2621 |
|
|---|
| 2622 | <rule>
|
|---|
| 2623 | <condition k="historic" v="castle"/>
|
|---|
| 2624 | <icon annotate="true" src="sightseeing/castle.png"/>
|
|---|
| 2625 | <area colour="historic#663300"/>
|
|---|
| 2626 | </rule>
|
|---|
| 2627 |
|
|---|
| 2628 | <rule>
|
|---|
| 2629 | <condition k="historic" v="monument"/>
|
|---|
| 2630 | <icon annotate="true" src="sightseeing/monument.png"/>
|
|---|
| 2631 | <area colour="historic#663300"/>
|
|---|
| 2632 | </rule>
|
|---|
| 2633 |
|
|---|
| 2634 | <rule>
|
|---|
| 2635 | <condition k="historic" v="memorial"/>
|
|---|
| 2636 | <icon annotate="true" src="sightseeing/memorial.png"/>
|
|---|
| 2637 | <area colour="historic#663300"/>
|
|---|
| 2638 | </rule>
|
|---|
| 2639 |
|
|---|
| 2640 | <rule>
|
|---|
| 2641 | <condition k="historic" v="archaeological_site"/>
|
|---|
| 2642 | <icon annotate="true" src="sightseeing/archaeological.png"/>
|
|---|
| 2643 | <area colour="historic#663300"/>
|
|---|
| 2644 | </rule>
|
|---|
| 2645 |
|
|---|
| 2646 | <rule>
|
|---|
| 2647 | <condition k="historic" v="ruins"/>
|
|---|
| 2648 | <icon annotate="true" src="sightseeing/ruins.png"/>
|
|---|
| 2649 | <area colour="historic#663300"/>
|
|---|
| 2650 | </rule>
|
|---|
| 2651 |
|
|---|
| 2652 | <rule>
|
|---|
| 2653 | <condition k="historic" v="battlefield"/>
|
|---|
| 2654 | <icon annotate="true" src="sightseeing/battlefield.png"/>
|
|---|
| 2655 | <area colour="historic#663300"/>
|
|---|
| 2656 | </rule>
|
|---|
| 2657 |
|
|---|
| 2658 | <rule>
|
|---|
| 2659 | <condition k="geological" v="palaeontological_site"/>
|
|---|
| 2660 | <icon annotate="true" src="historic/palaeontological_site.png"/>
|
|---|
| 2661 | <area colour="historic#663300"/>
|
|---|
| 2662 | </rule>
|
|---|
| 2663 |
|
|---|
| 2664 | <rule>
|
|---|
| 2665 | <condition k="historic" v="wayside_cross"/>
|
|---|
| 2666 | <icon annotate="true" src="religion/wayside_cross.png"/>
|
|---|
| 2667 | <area colour="historic#663300"/>
|
|---|
| 2668 | </rule>
|
|---|
| 2669 |
|
|---|
| 2670 | <rule>
|
|---|
| 2671 | <condition k="historic" v="wayside_shrine"/>
|
|---|
| 2672 | <icon annotate="true" src="religion/wayside_shrine.png"/>
|
|---|
| 2673 | <area colour="historic#663300"/>
|
|---|
| 2674 | </rule>
|
|---|
| 2675 |
|
|---|
| 2676 | <rule>
|
|---|
| 2677 | <condition k="historic" v="boundary_stone"/>
|
|---|
| 2678 | <icon annotate="true" src="historic/boundary_stone.png"/>
|
|---|
| 2679 | <area colour="historic#663300"/>
|
|---|
| 2680 | </rule>
|
|---|
| 2681 |
|
|---|
| 2682 | <!--landuse tags -->
|
|---|
| 2683 |
|
|---|
| 2684 | <rule>
|
|---|
| 2685 | <condition k="landuse" v="farm"/>
|
|---|
| 2686 | <area colour="green#b1e0c2"/>
|
|---|
| 2687 | <icon annotate="true" src="misc/landmark/farm.png"/>
|
|---|
| 2688 | </rule>
|
|---|
| 2689 |
|
|---|
| 2690 | <rule>
|
|---|
| 2691 | <condition k="landuse" v="farmland"/>
|
|---|
| 2692 | <area colour="green#b1e0c2"/>
|
|---|
| 2693 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 2694 | </rule>
|
|---|
| 2695 |
|
|---|
| 2696 | <rule>
|
|---|
| 2697 | <condition k="landuse" v="meadow"/>
|
|---|
| 2698 | <area colour="green#b1e0c2"/>
|
|---|
| 2699 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 2700 | </rule>
|
|---|
| 2701 |
|
|---|
| 2702 | <rule>
|
|---|
| 2703 | <condition k="landuse" v="vineyard"/>
|
|---|
| 2704 | <area colour="green#b1e0c2"/>
|
|---|
| 2705 | <icon annotate="true" src="shop/groceries/fruits.png"/>
|
|---|
| 2706 | </rule>
|
|---|
| 2707 |
|
|---|
| 2708 | <rule>
|
|---|
| 2709 | <condition k="landuse" v="orchard"/>
|
|---|
| 2710 | <area colour="green#b1e0c2"/>
|
|---|
| 2711 | </rule>
|
|---|
| 2712 |
|
|---|
| 2713 | <rule>
|
|---|
| 2714 | <condition k="landuse" v="quarry"/>
|
|---|
| 2715 | <area colour="quarry#888888"/>
|
|---|
| 2716 | <icon src="misc/landmark/mine.png"/>
|
|---|
| 2717 | </rule>
|
|---|
| 2718 |
|
|---|
| 2719 | <rule>
|
|---|
| 2720 | <condition k="landuse" v="landfill"/>
|
|---|
| 2721 | <area colour="landfill#663300"/>
|
|---|
| 2722 | <icon src="misc/no_icon.png"/>
|
|---|
| 2723 | </rule>
|
|---|
| 2724 |
|
|---|
| 2725 | <rule>
|
|---|
| 2726 | <condition k="landuse" v="basin"/>
|
|---|
| 2727 | <area colour="basin#0000bf"/>
|
|---|
| 2728 | <icon src="misc/no_icon.png"/>
|
|---|
| 2729 | </rule>
|
|---|
| 2730 |
|
|---|
| 2731 | <rule>
|
|---|
| 2732 | <condition k="landuse" v="reservoir"/>
|
|---|
| 2733 | <area colour="basin#0000bf"/>
|
|---|
| 2734 | <icon src="misc/no_icon.png"/>
|
|---|
| 2735 | </rule>
|
|---|
| 2736 |
|
|---|
| 2737 | <rule>
|
|---|
| 2738 | <condition k="landuse" v="forest"/>
|
|---|
| 2739 | <area colour="forest#b1efc8"/>
|
|---|
| 2740 | <icon src="misc/landmark/trees.png"/>
|
|---|
| 2741 | </rule>
|
|---|
| 2742 |
|
|---|
| 2743 | <rule>
|
|---|
| 2744 | <condition k="landuse" v="allotments"/>
|
|---|
| 2745 | <area colour="green#b1e0c2"/>
|
|---|
| 2746 | <icon src="misc/landmark/plant.png"/>
|
|---|
| 2747 | </rule>
|
|---|
| 2748 |
|
|---|
| 2749 | <rule>
|
|---|
| 2750 | <condition k="landuse" v="greenhouse_horticulture"/>
|
|---|
| 2751 | <area colour="green#b1e0c2"/>
|
|---|
| 2752 | <icon src="misc/landuse/greenhouse_horticulture.png"/>
|
|---|
| 2753 | </rule>
|
|---|
| 2754 |
|
|---|
| 2755 | <rule>
|
|---|
| 2756 | <condition k="landuse" v="grass"/>
|
|---|
| 2757 | <area colour="green#b1e0c2"/>
|
|---|
| 2758 | <icon src="misc/landmark/plant.png"/>
|
|---|
| 2759 | </rule>
|
|---|
| 2760 |
|
|---|
| 2761 | <rule>
|
|---|
| 2762 | <condition k="landuse" v="residential"/>
|
|---|
| 2763 | <area colour="residential#f0f0f0"/>
|
|---|
| 2764 | <icon src="misc/landuse/residential.png"/>
|
|---|
| 2765 | </rule>
|
|---|
| 2766 |
|
|---|
| 2767 | <rule>
|
|---|
| 2768 | <condition k="landuse" v="garages"/>
|
|---|
| 2769 | <area colour="garages#f0f0f0"/>
|
|---|
| 2770 | <icon src="misc/landuse/garages.png"/>
|
|---|
| 2771 | </rule>
|
|---|
| 2772 |
|
|---|
| 2773 | <rule>
|
|---|
| 2774 | <condition k="landuse" v="farmyard"/>
|
|---|
| 2775 | <area colour="farmyard#f0f0f0"/>
|
|---|
| 2776 | <icon src="misc/no_icon.png"/>
|
|---|
| 2777 | </rule>
|
|---|
| 2778 |
|
|---|
| 2779 |
|
|---|
| 2780 | <rule>
|
|---|
| 2781 | <condition k="landuse" v="retail"/>
|
|---|
| 2782 | <area colour="retail#dbdbdb"/>
|
|---|
| 2783 | <icon src="shop/mall.png"/>
|
|---|
| 2784 | </rule>
|
|---|
| 2785 |
|
|---|
| 2786 | <rule>
|
|---|
| 2787 | <condition k="landuse" v="commercial"/>
|
|---|
| 2788 | <area colour="retail#dbdbdb"/>
|
|---|
| 2789 | <icon src="misc/landuse/commercial.png"/>
|
|---|
| 2790 | </rule>
|
|---|
| 2791 |
|
|---|
| 2792 | <rule>
|
|---|
| 2793 | <condition k="landuse" v="industrial"/>
|
|---|
| 2794 | <area colour="industrial#ecd8ff"/>
|
|---|
| 2795 | <icon src="misc/landmark/works.png"/>
|
|---|
| 2796 | </rule>
|
|---|
| 2797 |
|
|---|
| 2798 | <rule>
|
|---|
| 2799 | <condition k="landuse" v="brownfield"/>
|
|---|
| 2800 | <area colour="brownfield#ecba32"/>
|
|---|
| 2801 | <icon src="misc/no_icon.png"/>
|
|---|
| 2802 | </rule>
|
|---|
| 2803 |
|
|---|
| 2804 | <rule>
|
|---|
| 2805 | <condition k="landuse" v="greenfield"/>
|
|---|
| 2806 | <area colour="greenfield#b1ec5c"/>
|
|---|
| 2807 | <icon src="misc/no_icon.png"/>
|
|---|
| 2808 | </rule>
|
|---|
| 2809 |
|
|---|
| 2810 | <rule>
|
|---|
| 2811 | <condition k="landuse" v="railway"/>
|
|---|
| 2812 | <area colour="railland#888888"/>
|
|---|
| 2813 | <icon src="transport/railway_station.png"/>
|
|---|
| 2814 | </rule>
|
|---|
| 2815 |
|
|---|
| 2816 | <rule>
|
|---|
| 2817 | <condition k="landuse" v="construction"/>
|
|---|
| 2818 | <area colour="construction#ffff00"/>
|
|---|
| 2819 | <line width="1" colour="construction#ffff00" dashed="true"/>
|
|---|
| 2820 | <icon src="misc/construction.png"/>
|
|---|
| 2821 | </rule>
|
|---|
| 2822 |
|
|---|
| 2823 | <rule>
|
|---|
| 2824 | <condition k="landuse" v="military"/>
|
|---|
| 2825 | <area colour="military#b62c2c"/>
|
|---|
| 2826 | <icon src="vehicle/tank.png"/>
|
|---|
| 2827 | </rule>
|
|---|
| 2828 |
|
|---|
| 2829 | <rule>
|
|---|
| 2830 | <condition k="landuse" v="cemetery"/>
|
|---|
| 2831 | <area colour="cemetery#b1efc8"/>
|
|---|
| 2832 | <icon src="rendering/landuse/cemetery.png"/>
|
|---|
| 2833 | </rule>
|
|---|
| 2834 |
|
|---|
| 2835 | <rule>
|
|---|
| 2836 | <condition k="landuse" v="village_green"/>
|
|---|
| 2837 | <area colour="green#b1e0c2"/>
|
|---|
| 2838 | <icon src="leisure/common.png"/>
|
|---|
| 2839 | </rule>
|
|---|
| 2840 |
|
|---|
| 2841 | <rule>
|
|---|
| 2842 | <condition k="landuse" v="recreation_ground"/>
|
|---|
| 2843 | <area colour="green#b1e0c2"/>
|
|---|
| 2844 | <icon src="leisure/common.png"/>
|
|---|
| 2845 | </rule>
|
|---|
| 2846 |
|
|---|
| 2847 | <!--military tags -->
|
|---|
| 2848 |
|
|---|
| 2849 | <rule>
|
|---|
| 2850 | <condition k="military" v="airfield"/>
|
|---|
| 2851 | <icon src="transport/airport/airfield.png"/>
|
|---|
| 2852 | <area colour="military#b62c2c"/>
|
|---|
| 2853 | </rule>
|
|---|
| 2854 |
|
|---|
| 2855 | <rule>
|
|---|
| 2856 | <condition k="military" v="bunker"/>
|
|---|
| 2857 | <icon src="misc/landmark/bunker.png"/>
|
|---|
| 2858 | <area colour="military#b62c2c"/>
|
|---|
| 2859 | </rule>
|
|---|
| 2860 |
|
|---|
| 2861 | <rule>
|
|---|
| 2862 | <condition k="military" v="barracks"/>
|
|---|
| 2863 | <icon src="misc/no_icon.png"/>
|
|---|
| 2864 | <area colour="military#b62c2c"/>
|
|---|
| 2865 | </rule>
|
|---|
| 2866 |
|
|---|
| 2867 | <rule>
|
|---|
| 2868 | <condition k="military" v="danger_area"/>
|
|---|
| 2869 | <icon src="misc/danger.png"/>
|
|---|
| 2870 | <area colour="military#b62c2c"/>
|
|---|
| 2871 | </rule>
|
|---|
| 2872 |
|
|---|
| 2873 | <rule>
|
|---|
| 2874 | <condition k="military" v="range"/>
|
|---|
| 2875 | <icon src="misc/landmark/range.png"/>
|
|---|
| 2876 | <area colour="military#b62c2c"/>
|
|---|
| 2877 | </rule>
|
|---|
| 2878 |
|
|---|
| 2879 | <!--natural tags -->
|
|---|
| 2880 |
|
|---|
| 2881 | <rule>
|
|---|
| 2882 | <condition k="natural" v="spring"/>
|
|---|
| 2883 | <icon annotate="true" src="misc/landmark/spring.png"/>
|
|---|
| 2884 | <area colour="light_water#00005f"/>
|
|---|
| 2885 | </rule>
|
|---|
| 2886 |
|
|---|
| 2887 | <rule>
|
|---|
| 2888 | <condition k="natural" v="peak"/>
|
|---|
| 2889 | <area colour="peak#663300"/>
|
|---|
| 2890 | <icon annotate="true" src="misc/landmark/peak_small.png"/>
|
|---|
| 2891 | </rule>
|
|---|
| 2892 |
|
|---|
| 2893 | <rule>
|
|---|
| 2894 | <condition k="natural" v="glacier"/>
|
|---|
| 2895 | <icon annotate="true" src="misc/landmark/glacier_small.png"/>
|
|---|
| 2896 | <area colour="glacier#ffffff"/>
|
|---|
| 2897 | </rule>
|
|---|
| 2898 |
|
|---|
| 2899 | <rule>
|
|---|
| 2900 | <condition k="natural" v="volcano"/>
|
|---|
| 2901 | <icon annotate="true" src="misc/landmark/volcano_small.png"/>
|
|---|
| 2902 | <area colour="volcano#5f0000"/>
|
|---|
| 2903 | </rule>
|
|---|
| 2904 |
|
|---|
| 2905 | <rule>
|
|---|
| 2906 | <condition k="natural" v="cliff"/>
|
|---|
| 2907 | <icon src="misc/cliff.png"/>
|
|---|
| 2908 | <line width="2" colour="natural#002f00"/>
|
|---|
| 2909 | <area colour="natural#002f00" closed="true"/>
|
|---|
| 2910 | </rule>
|
|---|
| 2911 |
|
|---|
| 2912 | <rule>
|
|---|
| 2913 | <condition k="natural" v="scree"/>
|
|---|
| 2914 | <icon src="misc/no_icon.png"/>
|
|---|
| 2915 | <area colour="natural#002f00"/>
|
|---|
| 2916 | </rule>
|
|---|
| 2917 |
|
|---|
| 2918 | <rule>
|
|---|
| 2919 | <condition k="natural" v="scrub"/>
|
|---|
| 2920 | <icon src="misc/no_icon.png"/>
|
|---|
| 2921 | <area colour="scrub#007000"/>
|
|---|
| 2922 | </rule>
|
|---|
| 2923 |
|
|---|
| 2924 | <rule>
|
|---|
| 2925 | <condition k="natural" v="fell"/>
|
|---|
| 2926 | <icon src="misc/no_icon.png"/>
|
|---|
| 2927 | <area colour="natural#002f00"/>
|
|---|
| 2928 | </rule>
|
|---|
| 2929 |
|
|---|
| 2930 | <rule>
|
|---|
| 2931 | <condition k="natural" v="heath"/>
|
|---|
| 2932 | <icon src="misc/no_icon.png"/>
|
|---|
| 2933 | <area colour="heath#ffffc0"/>
|
|---|
| 2934 | </rule>
|
|---|
| 2935 |
|
|---|
| 2936 | <rule>
|
|---|
| 2937 | <condition k="natural" v="wood"/>
|
|---|
| 2938 | <icon src="misc/landmark/trees.png"/>
|
|---|
| 2939 | <area colour="woodarea#008000"/>
|
|---|
| 2940 | </rule>
|
|---|
| 2941 |
|
|---|
| 2942 | <rule>
|
|---|
| 2943 | <condition k="natural" v="wetland"/>
|
|---|
| 2944 | <icon src="misc/no_icon.png"/>
|
|---|
| 2945 | <area colour="marsh#4f4ff3"/>
|
|---|
| 2946 | </rule>
|
|---|
| 2947 |
|
|---|
| 2948 | <rule>
|
|---|
| 2949 | <condition k="natural" v="water"/>
|
|---|
| 2950 | <icon src="nautical/water.png"/>
|
|---|
| 2951 | <area colour="water#0000ff"/>
|
|---|
| 2952 | </rule>
|
|---|
| 2953 |
|
|---|
| 2954 | <rule>
|
|---|
| 2955 | <condition k="natural" v="coastline"/>
|
|---|
| 2956 | <icon src="misc/coastline.png"/>
|
|---|
| 2957 | <line width="1" colour="water#0000ff"/>
|
|---|
| 2958 | </rule>
|
|---|
| 2959 |
|
|---|
| 2960 | <rule>
|
|---|
| 2961 | <condition k="natural" v="mud"/>
|
|---|
| 2962 | <icon src="misc/mud.png"/>
|
|---|
| 2963 | <area colour="mud#cba762"/>
|
|---|
| 2964 | </rule>
|
|---|
| 2965 |
|
|---|
| 2966 | <rule>
|
|---|
| 2967 | <condition k="natural" v="beach"/>
|
|---|
| 2968 | <icon src="misc/beach.png"/>
|
|---|
| 2969 | <area colour="beach#f8dba2"/>
|
|---|
| 2970 | </rule>
|
|---|
| 2971 |
|
|---|
| 2972 | <rule>
|
|---|
| 2973 | <condition k="natural" v="bay"/>
|
|---|
| 2974 | <icon src="misc/bay.png"/>
|
|---|
| 2975 | <area colour="natural#002f00"/>
|
|---|
| 2976 | </rule>
|
|---|
| 2977 |
|
|---|
| 2978 | <rule>
|
|---|
| 2979 | <condition k="natural" v="land"/>
|
|---|
| 2980 | <icon src="misc/no_icon.png"/>
|
|---|
| 2981 | <area colour="natural#002f00"/>
|
|---|
| 2982 | </rule>
|
|---|
| 2983 |
|
|---|
| 2984 | <rule>
|
|---|
| 2985 | <condition k="natural" v="cave_entrance"/>
|
|---|
| 2986 | <icon src="misc/landmark/cave_entrance.png"/>
|
|---|
| 2987 | <area colour="natural#002f00"/>
|
|---|
| 2988 | </rule>
|
|---|
| 2989 |
|
|---|
| 2990 | <rule>
|
|---|
| 2991 | <condition k="natural" v="tree"/>
|
|---|
| 2992 | <icon src="misc/landmark/trees.png"/>
|
|---|
| 2993 | </rule>
|
|---|
| 2994 |
|
|---|
| 2995 | <!--route tags -->
|
|---|
| 2996 |
|
|---|
| 2997 | <rule>
|
|---|
| 2998 | <condition k="route" v="bus"/>
|
|---|
| 2999 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3000 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3001 | </rule>
|
|---|
| 3002 |
|
|---|
| 3003 | <rule>
|
|---|
| 3004 | <condition k="route" v="ferry"/>
|
|---|
| 3005 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3006 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3007 | </rule>
|
|---|
| 3008 |
|
|---|
| 3009 | <rule>
|
|---|
| 3010 | <condition k="route" v="flight"/>
|
|---|
| 3011 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3012 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3013 | </rule>
|
|---|
| 3014 |
|
|---|
| 3015 | <rule>
|
|---|
| 3016 | <condition k="route" v="ncn"/>
|
|---|
| 3017 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3018 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3019 | </rule>
|
|---|
| 3020 |
|
|---|
| 3021 | <rule>
|
|---|
| 3022 | <condition k="route" v="subsea"/>
|
|---|
| 3023 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3024 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3025 | </rule>
|
|---|
| 3026 |
|
|---|
| 3027 | <rule>
|
|---|
| 3028 | <condition k="route" v="ski"/>
|
|---|
| 3029 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3030 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3031 | </rule>
|
|---|
| 3032 |
|
|---|
| 3033 | <rule>
|
|---|
| 3034 | <condition k="route" v="tour"/>
|
|---|
| 3035 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3036 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3037 | </rule>
|
|---|
| 3038 |
|
|---|
| 3039 | <rule>
|
|---|
| 3040 | <condition k="route" v="pub_crawl"/>
|
|---|
| 3041 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3042 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3043 | </rule>
|
|---|
| 3044 |
|
|---|
| 3045 | <!--boundary tags -->
|
|---|
| 3046 |
|
|---|
| 3047 | <rule>
|
|---|
| 3048 | <condition k="boundary" v="national"/>
|
|---|
| 3049 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3050 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3051 | </rule>
|
|---|
| 3052 |
|
|---|
| 3053 | <rule>
|
|---|
| 3054 | <condition k="admin_level" v="1"/>
|
|---|
| 3055 | <line width="5" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3056 | </rule>
|
|---|
| 3057 | <rule>
|
|---|
| 3058 | <condition k="admin_level" v="2"/>
|
|---|
| 3059 | <line width="5" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3060 | </rule>
|
|---|
| 3061 | <rule>
|
|---|
| 3062 | <condition k="admin_level" v="3"/>
|
|---|
| 3063 | <line width="4" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3064 | </rule>
|
|---|
| 3065 | <rule>
|
|---|
| 3066 | <condition k="admin_level" v="4"/>
|
|---|
| 3067 | <line width="4" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3068 | </rule>
|
|---|
| 3069 | <rule>
|
|---|
| 3070 | <condition k="admin_level" v="5"/>
|
|---|
| 3071 | <line width="3" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3072 | </rule>
|
|---|
| 3073 | <rule>
|
|---|
| 3074 | <condition k="admin_level" v="6"/>
|
|---|
| 3075 | <line width="3" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3076 | </rule>
|
|---|
| 3077 | <rule>
|
|---|
| 3078 | <condition k="admin_level" v="7"/>
|
|---|
| 3079 | <line width="2" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3080 | </rule>
|
|---|
| 3081 | <rule>
|
|---|
| 3082 | <condition k="admin_level" v="8"/>
|
|---|
| 3083 | <line width="2" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3084 | </rule>
|
|---|
| 3085 | <rule>
|
|---|
| 3086 | <condition k="admin_level" v="9"/>
|
|---|
| 3087 | <line width="1" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3088 | </rule>
|
|---|
| 3089 | <rule>
|
|---|
| 3090 | <condition k="admin_level" v="10"/>
|
|---|
| 3091 | <line width="1" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3092 | </rule>
|
|---|
| 3093 |
|
|---|
| 3094 | <rule>
|
|---|
| 3095 | <condition k="boundary" v="administrative"/>
|
|---|
| 3096 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3097 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3098 | </rule>
|
|---|
| 3099 |
|
|---|
| 3100 | <rule>
|
|---|
| 3101 | <condition k="boundary" v="civil"/>
|
|---|
| 3102 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3103 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3104 | </rule>
|
|---|
| 3105 |
|
|---|
| 3106 | <rule>
|
|---|
| 3107 | <condition k="boundary" v="political"/>
|
|---|
| 3108 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3109 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3110 | </rule>
|
|---|
| 3111 |
|
|---|
| 3112 | <rule>
|
|---|
| 3113 | <condition k="boundary" v="national_park"/>
|
|---|
| 3114 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3115 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3116 | </rule>
|
|---|
| 3117 |
|
|---|
| 3118 | <!--sport tags -->
|
|---|
| 3119 |
|
|---|
| 3120 | <rule>
|
|---|
| 3121 | <condition k="sport" v="9pin"/>
|
|---|
| 3122 | <area colour="sport#bde3cb"/>
|
|---|
| 3123 | <icon src="sport/10pin.png"/>
|
|---|
| 3124 | </rule>
|
|---|
| 3125 |
|
|---|
| 3126 | <rule>
|
|---|
| 3127 | <condition k="sport" v="10pin"/>
|
|---|
| 3128 | <area colour="sport#bde3cb"/>
|
|---|
| 3129 | <icon src="sport/10pin.png"/>
|
|---|
| 3130 | </rule>
|
|---|
| 3131 |
|
|---|
| 3132 | <rule>
|
|---|
| 3133 | <condition k="sport" v="athletics"/>
|
|---|
| 3134 | <area colour="sport#bde3cb"/>
|
|---|
| 3135 | <icon src="sport/athletics.png"/>
|
|---|
| 3136 | </rule>
|
|---|
| 3137 |
|
|---|
| 3138 | <rule>
|
|---|
| 3139 | <condition k="sport" v="soccer"/>
|
|---|
| 3140 | <area colour="sport#bde3cb"/>
|
|---|
| 3141 | <icon src="sport/soccer.png"/>
|
|---|
| 3142 | </rule>
|
|---|
| 3143 |
|
|---|
| 3144 | <rule>
|
|---|
| 3145 | <condition k="sport" v="australian_football"/>
|
|---|
| 3146 | <area colour="sport#bde3cb"/>
|
|---|
| 3147 | <icon src="sport/soccer.png"/>
|
|---|
| 3148 | </rule>
|
|---|
| 3149 |
|
|---|
| 3150 | <rule>
|
|---|
| 3151 | <condition k="sport" v="american_football"/>
|
|---|
| 3152 | <area colour="sport#bde3cb"/>
|
|---|
| 3153 | <icon src="sport/soccer.png"/>
|
|---|
| 3154 | </rule>
|
|---|
| 3155 |
|
|---|
| 3156 | <rule>
|
|---|
| 3157 | <condition k="sport" v="canadian_football"/>
|
|---|
| 3158 | <area colour="sport#bde3cb"/>
|
|---|
| 3159 | <icon src="sport/soccer.png"/>
|
|---|
| 3160 | </rule>
|
|---|
| 3161 |
|
|---|
| 3162 | <rule>
|
|---|
| 3163 | <condition k="sport" v="gaelic_football"/>
|
|---|
| 3164 | <area colour="sport#bde3cb"/>
|
|---|
| 3165 | <icon src="sport/soccer.png"/>
|
|---|
| 3166 | </rule>
|
|---|
| 3167 |
|
|---|
| 3168 | <rule>
|
|---|
| 3169 | <condition k="sport" v="rugby_league"/>
|
|---|
| 3170 | <area colour="sport#bde3cb"/>
|
|---|
| 3171 | <icon src="sport/football.png"/>
|
|---|
| 3172 | </rule>
|
|---|
| 3173 |
|
|---|
| 3174 | <rule>
|
|---|
| 3175 | <condition k="sport" v="rugby_union"/>
|
|---|
| 3176 | <area colour="sport#bde3cb"/>
|
|---|
| 3177 | <icon src="sport/football.png"/>
|
|---|
| 3178 | </rule>
|
|---|
| 3179 |
|
|---|
| 3180 | <rule>
|
|---|
| 3181 | <condition k="sport" v="baseball"/>
|
|---|
| 3182 | <area colour="sport#bde3cb"/>
|
|---|
| 3183 | <icon src="sport/baseball.png"/>
|
|---|
| 3184 | </rule>
|
|---|
| 3185 |
|
|---|
| 3186 | <rule>
|
|---|
| 3187 | <condition k="sport" v="basketball"/>
|
|---|
| 3188 | <area colour="sport#bde3cb"/>
|
|---|
| 3189 | <icon src="sport/basketball.png"/>
|
|---|
| 3190 | </rule>
|
|---|
| 3191 |
|
|---|
| 3192 | <rule>
|
|---|
| 3193 | <condition k="sport" v="boules"/>
|
|---|
| 3194 | <area colour="sport#bde3cb"/>
|
|---|
| 3195 | <icon src="sport/boule.png"/>
|
|---|
| 3196 | </rule>
|
|---|
| 3197 |
|
|---|
| 3198 | <rule>
|
|---|
| 3199 | <condition k="sport" v="bowls"/>
|
|---|
| 3200 | <area colour="sport#bde3cb"/>
|
|---|
| 3201 | <icon src="sport/boule.png"/>
|
|---|
| 3202 | </rule>
|
|---|
| 3203 |
|
|---|
| 3204 | <rule>
|
|---|
| 3205 | <condition k="sport" v="canoe"/>
|
|---|
| 3206 | <area colour="sport#bde3cb"/>
|
|---|
| 3207 | <icon src="sport/canoe.png"/>
|
|---|
| 3208 | </rule>
|
|---|
| 3209 |
|
|---|
| 3210 | <rule>
|
|---|
| 3211 | <condition k="sport" v="chess"/>
|
|---|
| 3212 | <area colour="sport#bde3cb"/>
|
|---|
| 3213 | <icon src="sport/chess.png"/>
|
|---|
| 3214 | </rule>
|
|---|
| 3215 |
|
|---|
| 3216 | <rule>
|
|---|
| 3217 | <condition k="sport" v="climbing"/>
|
|---|
| 3218 | <area colour="sport#bde3cb"/>
|
|---|
| 3219 | <icon src="sport/climbing.png"/>
|
|---|
| 3220 | </rule>
|
|---|
| 3221 |
|
|---|
| 3222 | <rule>
|
|---|
| 3223 | <condition k="sport" v="cricket"/>
|
|---|
| 3224 | <area colour="sport#bde3cb"/>
|
|---|
| 3225 | <icon src="sport/cricket.png"/>
|
|---|
| 3226 | </rule>
|
|---|
| 3227 |
|
|---|
| 3228 | <rule>
|
|---|
| 3229 | <condition k="sport" v="cricket_nets"/>
|
|---|
| 3230 | <area colour="sport#bde3cb"/>
|
|---|
| 3231 | <icon src="misc/no_icon.png"/>
|
|---|
| 3232 | </rule>
|
|---|
| 3233 |
|
|---|
| 3234 | <rule>
|
|---|
| 3235 | <condition k="sport" v="croquet"/>
|
|---|
| 3236 | <area colour="sport#bde3cb"/>
|
|---|
| 3237 | <icon src="sport/croquet.png"/>
|
|---|
| 3238 | </rule>
|
|---|
| 3239 |
|
|---|
| 3240 | <rule>
|
|---|
| 3241 | <condition k="sport" v="cycling"/>
|
|---|
| 3242 | <area colour="sport#bde3cb"/>
|
|---|
| 3243 | <icon src="sport/cycling.png"/>
|
|---|
| 3244 | </rule>
|
|---|
| 3245 |
|
|---|
| 3246 | <rule>
|
|---|
| 3247 | <condition k="sport" v="dog_racing"/>
|
|---|
| 3248 | <area colour="sport#bde3cb"/>
|
|---|
| 3249 | <icon src="leisure/dog.png"/>
|
|---|
| 3250 | </rule>
|
|---|
| 3251 |
|
|---|
| 3252 | <rule>
|
|---|
| 3253 | <condition k="sport" v="equestrian"/>
|
|---|
| 3254 | <area colour="sport#bde3cb"/>
|
|---|
| 3255 | <icon src="sport/riding.png"/>
|
|---|
| 3256 | </rule>
|
|---|
| 3257 |
|
|---|
| 3258 | <rule>
|
|---|
| 3259 | <condition k="sport" v="golf"/>
|
|---|
| 3260 | <area colour="sport#bde3cb"/>
|
|---|
| 3261 | <icon src="sport/golf.png"/>
|
|---|
| 3262 | </rule>
|
|---|
| 3263 |
|
|---|
| 3264 | <rule>
|
|---|
| 3265 | <condition k="sport" v="gymnastics"/>
|
|---|
| 3266 | <area colour="sport#bde3cb"/>
|
|---|
| 3267 | <icon src="sport/multi.png"/>
|
|---|
| 3268 | </rule>
|
|---|
| 3269 |
|
|---|
| 3270 | <rule>
|
|---|
| 3271 | <condition k="sport" v="hockey"/>
|
|---|
| 3272 | <area colour="sport#bde3cb"/>
|
|---|
| 3273 | <icon src="sport/hockey.png"/>
|
|---|
| 3274 | </rule>
|
|---|
| 3275 |
|
|---|
| 3276 | <rule>
|
|---|
| 3277 | <condition k="sport" v="horse_racing"/>
|
|---|
| 3278 | <area colour="sport#bde3cb"/>
|
|---|
| 3279 | <icon src="sport/riding.png"/>
|
|---|
| 3280 | </rule>
|
|---|
| 3281 |
|
|---|
| 3282 | <rule>
|
|---|
| 3283 | <condition k="sport" v="karting"/>
|
|---|
| 3284 | <area colour="sport#bde3cb"/>
|
|---|
| 3285 | <icon src="sport/karting.png"/>
|
|---|
| 3286 | </rule>
|
|---|
| 3287 |
|
|---|
| 3288 | <rule>
|
|---|
| 3289 | <condition k="sport" v="motocross"/>
|
|---|
| 3290 | <area colour="sport#bde3cb"/>
|
|---|
| 3291 | <icon src="sport/motocross.png"/>
|
|---|
| 3292 | </rule>
|
|---|
| 3293 |
|
|---|
| 3294 | <rule>
|
|---|
| 3295 | <condition k="sport" v="motor"/>
|
|---|
| 3296 | <area colour="sport#bde3cb"/>
|
|---|
| 3297 | <icon src="sport/motor.png"/>
|
|---|
| 3298 | </rule>
|
|---|
| 3299 |
|
|---|
| 3300 | <rule>
|
|---|
| 3301 | <condition k="sport" v="multi"/>
|
|---|
| 3302 | <area colour="sport#bde3cb"/>
|
|---|
| 3303 | <icon src="sport/multi.png"/>
|
|---|
| 3304 | </rule>
|
|---|
| 3305 |
|
|---|
| 3306 | <rule>
|
|---|
| 3307 | <condition k="sport" v="pelota"/>
|
|---|
| 3308 | <area colour="sport#bde3cb"/>
|
|---|
| 3309 | <icon src="sport/pelota.png"/>
|
|---|
| 3310 | </rule>
|
|---|
| 3311 |
|
|---|
| 3312 | <rule>
|
|---|
| 3313 | <condition k="sport" v="racquet"/>
|
|---|
| 3314 | <area colour="sport#bde3cb"/>
|
|---|
| 3315 | <icon src="sport/racquetball.png"/>
|
|---|
| 3316 | </rule>
|
|---|
| 3317 |
|
|---|
| 3318 | <rule>
|
|---|
| 3319 | <condition k="sport" v="skating"/>
|
|---|
| 3320 | <area colour="sport#bde3cb"/>
|
|---|
| 3321 | <icon src="sport/skating.png"/>
|
|---|
| 3322 | </rule>
|
|---|
| 3323 |
|
|---|
| 3324 | <rule>
|
|---|
| 3325 | <condition k="sport" v="skateboard"/>
|
|---|
| 3326 | <area colour="sport#bde3cb"/>
|
|---|
| 3327 | <icon src="sport/skateboard.png"/>
|
|---|
| 3328 | </rule>
|
|---|
| 3329 |
|
|---|
| 3330 | <rule>
|
|---|
| 3331 | <condition k="sport" v="swimming"/>
|
|---|
| 3332 | <area colour="sport#bde3cb"/>
|
|---|
| 3333 | <icon src="sport/pool.png"/>
|
|---|
| 3334 | </rule>
|
|---|
| 3335 |
|
|---|
| 3336 | <rule>
|
|---|
| 3337 | <condition k="sport" v="skiing"/>
|
|---|
| 3338 | <area colour="sport#bde3cb"/>
|
|---|
| 3339 | <icon src="sport/skiing.png"/>
|
|---|
| 3340 | </rule>
|
|---|
| 3341 |
|
|---|
| 3342 | <rule>
|
|---|
| 3343 | <condition k="sport" v="table_tennis"/>
|
|---|
| 3344 | <area colour="sport#bde3cb"/>
|
|---|
| 3345 | <icon src="sport/table_tennis.png"/>
|
|---|
| 3346 | </rule>
|
|---|
| 3347 |
|
|---|
| 3348 | <rule>
|
|---|
| 3349 | <condition k="sport" v="tennis"/>
|
|---|
| 3350 | <area colour="sport#bde3cb"/>
|
|---|
| 3351 | <icon src="sport/tennis.png"/>
|
|---|
| 3352 | </rule>
|
|---|
| 3353 |
|
|---|
| 3354 | <rule>
|
|---|
| 3355 | <condition k="sport" v="paintball"/>
|
|---|
| 3356 | <area colour="sport#bde3cb"/>
|
|---|
| 3357 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3358 | </rule>
|
|---|
| 3359 |
|
|---|
| 3360 | <rule>
|
|---|
| 3361 | <condition k="sport" v="squash"/>
|
|---|
| 3362 | <area colour="sport#bde3cb"/>
|
|---|
| 3363 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3364 | </rule>
|
|---|
| 3365 |
|
|---|
| 3366 | <rule>
|
|---|
| 3367 | <condition k="sport" v="shooting"/>
|
|---|
| 3368 | <area colour="sport#bde3cb"/>
|
|---|
| 3369 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3370 | </rule>
|
|---|
| 3371 |
|
|---|
| 3372 | <rule>
|
|---|
| 3373 | <condition k="sport" v="volleyball"/>
|
|---|
| 3374 | <area colour="sport#bde3cb"/>
|
|---|
| 3375 | <icon annotate="true" src="sport/volleyball.png"/>
|
|---|
| 3376 | </rule>
|
|---|
| 3377 |
|
|---|
| 3378 | <rule>
|
|---|
| 3379 | <condition k="sport" v="beachvolleyball"/>
|
|---|
| 3380 | <area colour="sport#bde3cb"/>
|
|---|
| 3381 | <icon annotate="true" src="sport/beachvolleyball.png"/>
|
|---|
| 3382 | </rule>
|
|---|
| 3383 |
|
|---|
| 3384 | <rule>
|
|---|
| 3385 | <condition k="sport" v="bowling"/>
|
|---|
| 3386 | <area colour="sport#bde3cb"/>
|
|---|
| 3387 | <icon annotate="true" src="sport/10pin.png"/>
|
|---|
| 3388 | </rule>
|
|---|
| 3389 |
|
|---|
| 3390 | <rule>
|
|---|
| 3391 | <condition k="sport" v="handball"/>
|
|---|
| 3392 | <area colour="sport#bde3cb"/>
|
|---|
| 3393 | <icon annotate="true" src="sport/handball.png"/>
|
|---|
| 3394 | </rule>
|
|---|
| 3395 |
|
|---|
| 3396 | <rule>
|
|---|
| 3397 | <condition k="sport" v="rowing"/>
|
|---|
| 3398 | <area colour="sport#bde3cb"/>
|
|---|
| 3399 | <icon annotate="true" src="sport/rowing.png"/>
|
|---|
| 3400 | </rule>
|
|---|
| 3401 |
|
|---|
| 3402 | <rule>
|
|---|
| 3403 | <condition k="sport" v="sailing"/>
|
|---|
| 3404 | <area colour="sport#bde3cb"/>
|
|---|
| 3405 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3406 | </rule>
|
|---|
| 3407 |
|
|---|
| 3408 | <rule>
|
|---|
| 3409 | <condition k="sport" v="diving"/>
|
|---|
| 3410 | <area colour="sport#bde3cb"/>
|
|---|
| 3411 | <icon annotate="true" src="sport/diving.png"/>
|
|---|
| 3412 | </rule>
|
|---|
| 3413 |
|
|---|
| 3414 | <rule>
|
|---|
| 3415 | <condition k="sport" v="badminton"/>
|
|---|
| 3416 | <area colour="sport#bde3cb"/>
|
|---|
| 3417 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3418 | </rule>
|
|---|
| 3419 |
|
|---|
| 3420 | <rule>
|
|---|
| 3421 | <condition k="sport" v="archery"/>
|
|---|
| 3422 | <area colour="sport#bde3cb"/>
|
|---|
| 3423 | <icon annotate="true" src="sport/archery.png"/>
|
|---|
| 3424 | </rule>
|
|---|
| 3425 |
|
|---|
| 3426 | <rule>
|
|---|
| 3427 | <condition k="sport" v="fishing"/>
|
|---|
| 3428 | <area colour="sport#bde3cb"/>
|
|---|
| 3429 | <icon annotate="true" src="sport/fishing.png"/>
|
|---|
| 3430 | </rule>
|
|---|
| 3431 |
|
|---|
| 3432 | <rule>
|
|---|
| 3433 | <condition k="sport" v="safety_training"/>
|
|---|
| 3434 | <area colour="sport#bde3cb"/>
|
|---|
| 3435 | <icon annotate="true" src="sport/safety_training.png"/>
|
|---|
| 3436 | </rule>
|
|---|
| 3437 |
|
|---|
| 3438 | <rule>
|
|---|
| 3439 | <condition k="sport" v="model_aerodrome"/>
|
|---|
| 3440 | <area colour="sport#bde3cb"/>
|
|---|
| 3441 | <icon annotate="true" src="transport/airport.png"/>
|
|---|
| 3442 | </rule>
|
|---|
| 3443 |
|
|---|
| 3444 | <rule>
|
|---|
| 3445 | <condition k="sport" v="rc_car"/>
|
|---|
| 3446 | <area colour="sport#bde3cb"/>
|
|---|
| 3447 | <icon annotate="true" src="transport/car.png"/>
|
|---|
| 3448 | </rule>
|
|---|
| 3449 |
|
|---|
| 3450 | <!--abutters tags -->
|
|---|
| 3451 |
|
|---|
| 3452 | <!--accessories tags -->
|
|---|
| 3453 |
|
|---|
| 3454 | <!--properties tags -->
|
|---|
| 3455 |
|
|---|
| 3456 | <rule>
|
|---|
| 3457 | <condition k="mountain_pass" b="yes"/>
|
|---|
| 3458 | <line width="2" realwidth="5" dashed="true" colour="deprecated#ff0000"/>
|
|---|
| 3459 | <icon src="misc/landmark/mountain_pass.png"/>
|
|---|
| 3460 | </rule>
|
|---|
| 3461 |
|
|---|
| 3462 | <!-- this will badly display otherwise well tagged footways and alike, so comment it out until we have better ways to display this in JOSM!
|
|---|
| 3463 | XXX - maybe it's possible to use linemod's here?
|
|---|
| 3464 | <rule>
|
|---|
| 3465 | <condition k="surface" v="paved"/>
|
|---|
| 3466 | <linemod mode="under" width="0" dashedcolour="#505050"/>
|
|---|
| 3467 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3468 | </rule>
|
|---|
| 3469 | <rule>
|
|---|
| 3470 | <condition k="surface" v="unpaved"/>
|
|---|
| 3471 | <linemod mode="under" width="0" dashedcolour="#301000"/>
|
|---|
| 3472 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3473 | </rule>
|
|---|
| 3474 | <rule>
|
|---|
| 3475 | <condition k="surface" v="gravel"/>
|
|---|
| 3476 | <linemod mode="under" width="0" dashedcolour="#100070"/>
|
|---|
| 3477 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3478 | </rule>
|
|---|
| 3479 |
|
|---|
| 3480 | <rule>
|
|---|
| 3481 | <condition k="surface" v="cobblestone"/>
|
|---|
| 3482 | <linemod mode="under" width="0" dashedcolour="#600060"/>
|
|---|
| 3483 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3484 | </rule>
|
|---|
| 3485 | -->
|
|---|
| 3486 |
|
|---|
| 3487 | <!--name tags -->
|
|---|
| 3488 |
|
|---|
| 3489 | <!--preferences tags -->
|
|---|
| 3490 |
|
|---|
| 3491 | <!--place tags -->
|
|---|
| 3492 |
|
|---|
| 3493 | <rule>
|
|---|
| 3494 | <condition k="place" v="continent"/>
|
|---|
| 3495 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3496 | <area colour="place#8de3cb"/>
|
|---|
| 3497 | </rule>
|
|---|
| 3498 |
|
|---|
| 3499 | <rule>
|
|---|
| 3500 | <condition k="place" v="country"/>
|
|---|
| 3501 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3502 | <area colour="place#8de3cb"/>
|
|---|
| 3503 | </rule>
|
|---|
| 3504 |
|
|---|
| 3505 | <rule>
|
|---|
| 3506 | <condition k="place" v="state"/>
|
|---|
| 3507 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3508 | <area colour="place#8de3cb"/>
|
|---|
| 3509 | </rule>
|
|---|
| 3510 |
|
|---|
| 3511 | <rule>
|
|---|
| 3512 | <condition k="place" v="region"/>
|
|---|
| 3513 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3514 | <area colour="place#8de3cb"/>
|
|---|
| 3515 | </rule>
|
|---|
| 3516 |
|
|---|
| 3517 | <rule>
|
|---|
| 3518 | <condition k="place" v="county"/>
|
|---|
| 3519 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3520 | <area colour="place#8de3cb"/>
|
|---|
| 3521 | </rule>
|
|---|
| 3522 |
|
|---|
| 3523 | <rule>
|
|---|
| 3524 | <condition k="place" v="city"/>
|
|---|
| 3525 | <icon annotate="true" src="place/settlement/city.png"/>
|
|---|
| 3526 | <area colour="place#8de3cb"/>
|
|---|
| 3527 | </rule>
|
|---|
| 3528 |
|
|---|
| 3529 | <rule>
|
|---|
| 3530 | <condition k="place" v="town"/>
|
|---|
| 3531 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3532 | <area colour="place#8de3cb"/>
|
|---|
| 3533 | </rule>
|
|---|
| 3534 |
|
|---|
| 3535 | <rule>
|
|---|
| 3536 | <condition k="place" v="village"/>
|
|---|
| 3537 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3538 | <area colour="place#8de3cb"/>
|
|---|
| 3539 | </rule>
|
|---|
| 3540 |
|
|---|
| 3541 | <rule>
|
|---|
| 3542 | <condition k="place" v="hamlet"/>
|
|---|
| 3543 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3544 | <area colour="place#8de3cb"/>
|
|---|
| 3545 | </rule>
|
|---|
| 3546 |
|
|---|
| 3547 | <rule>
|
|---|
| 3548 | <condition k="place" v="suburb"/>
|
|---|
| 3549 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3550 | <area colour="place#8de3cb"/>
|
|---|
| 3551 | </rule>
|
|---|
| 3552 |
|
|---|
| 3553 | <rule>
|
|---|
| 3554 | <condition k="place" v="locality"/>
|
|---|
| 3555 | <icon annotate="true" src="place/locality.png"/>
|
|---|
| 3556 | <area colour="place#8de3cb"/>
|
|---|
| 3557 | </rule>
|
|---|
| 3558 |
|
|---|
| 3559 | <rule>
|
|---|
| 3560 | <condition k="place" v="island"/>
|
|---|
| 3561 | <icon annotate="true" src="place/island.png"/>
|
|---|
| 3562 | <area colour="place#8de3cb"/>
|
|---|
| 3563 | </rule>
|
|---|
| 3564 |
|
|---|
| 3565 | <rule>
|
|---|
| 3566 | <condition k="place" v="islet"/>
|
|---|
| 3567 | <icon annotate="true" src="place/islet.png"/>
|
|---|
| 3568 | <area colour="place#8de3cb"/>
|
|---|
| 3569 | </rule>
|
|---|
| 3570 |
|
|---|
| 3571 | <!-- special display of unreviewed tiger data (USA) -->
|
|---|
| 3572 | <rule>
|
|---|
| 3573 | <condition k="tiger:reviewed" v="no"/>
|
|---|
| 3574 | <linemod mode="under" width="10" colour="tiger_data#80800090"/>
|
|---|
| 3575 | </rule>
|
|---|
| 3576 |
|
|---|
| 3577 | <!-- lot's of "openGeoDB:..." tags can be found in germany -->
|
|---|
| 3578 | <rule>
|
|---|
| 3579 | <condition k="openGeoDB:type" v="Stadt"/>
|
|---|
| 3580 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3581 | </rule>
|
|---|
| 3582 |
|
|---|
| 3583 | <rule>
|
|---|
| 3584 | <condition k="openGeoDB:type" v="Kreis"/>
|
|---|
| 3585 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3586 | </rule>
|
|---|
| 3587 |
|
|---|
| 3588 | <rule>
|
|---|
| 3589 | <condition k="openGeoDB:type" v="Gemeinde"/>
|
|---|
| 3590 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3591 | </rule>
|
|---|
| 3592 |
|
|---|
| 3593 | <rule>
|
|---|
| 3594 | <condition k="openGeoDB:type" v="Ort"/>
|
|---|
| 3595 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3596 | </rule>
|
|---|
| 3597 |
|
|---|
| 3598 | <rule>
|
|---|
| 3599 | <condition k="openGeoDB:type" v="District"/>
|
|---|
| 3600 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3601 | </rule>
|
|---|
| 3602 |
|
|---|
| 3603 | <rule>
|
|---|
| 3604 | <condition k="openGeoDB:location" v="locality"/>
|
|---|
| 3605 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3606 | </rule>
|
|---|
| 3607 |
|
|---|
| 3608 | <!--annotation tags -->
|
|---|
| 3609 |
|
|---|
| 3610 | <!--"work in progress" tags -->
|
|---|
| 3611 |
|
|---|
| 3612 | <rule>
|
|---|
| 3613 | <condition k="building"/>
|
|---|
| 3614 | <icon annotate="true" src="misc/landmark/building.png" priority="-10000"/>
|
|---|
| 3615 | <area colour="building#cb9999" priority="-10000"/>
|
|---|
| 3616 | </rule>
|
|---|
| 3617 |
|
|---|
| 3618 | <rule>
|
|---|
| 3619 | <condition k="area" b="yes"/>
|
|---|
| 3620 | <area colour="area#ffffff" priority="-10000"/>
|
|---|
| 3621 | </rule>
|
|---|
| 3622 |
|
|---|
| 3623 | <rule>
|
|---|
| 3624 | <condition k="addr:housenumber"/>
|
|---|
| 3625 | <icon annotate="true" src="misc/housenumber.png" priority="-50000"/>
|
|---|
| 3626 | </rule>
|
|---|
| 3627 |
|
|---|
| 3628 | <rule>
|
|---|
| 3629 | <condition k="addr:postcode"/>
|
|---|
| 3630 | <icon annotate="true" src="misc/housenumber.png" priority="-50000"/>
|
|---|
| 3631 | </rule>
|
|---|
| 3632 |
|
|---|
| 3633 | <rule>
|
|---|
| 3634 | <condition k="addr:interpolation" v="odd"/>
|
|---|
| 3635 | <line width="1" realwidth="1" dashed="15,4" colour="address#1C86EE"/>
|
|---|
| 3636 | </rule>
|
|---|
| 3637 |
|
|---|
| 3638 | <rule>
|
|---|
| 3639 | <condition k="addr:interpolation" v="even"/>
|
|---|
| 3640 | <line width="1" realwidth="1" dashed="4,4" colour="address#1C86EE"/>
|
|---|
| 3641 | </rule>
|
|---|
| 3642 |
|
|---|
| 3643 | <rule>
|
|---|
| 3644 | <condition k="addr:interpolation" v="all"/>
|
|---|
| 3645 | <line width="1" realwidth="1" dashed="1,1" colour="address#1C86EE"/>
|
|---|
| 3646 | </rule>
|
|---|
| 3647 |
|
|---|
| 3648 | <rule>
|
|---|
| 3649 | <condition k="addr:interpolation" v="alphabetic"/>
|
|---|
| 3650 | <line width="1" realwidth="1" dashed="1,1" colour="address#1C86EE"/>
|
|---|
| 3651 | </rule>
|
|---|
| 3652 |
|
|---|
| 3653 | <rule>
|
|---|
| 3654 | <condition k="fixme"/>
|
|---|
| 3655 | <icon annotate="true" src="misc/fixme.png" priority="10000"/>
|
|---|
| 3656 | </rule>
|
|---|
| 3657 |
|
|---|
| 3658 | <rule>
|
|---|
| 3659 | <condition k="FIXME"/>
|
|---|
| 3660 | <icon annotate="true" src="misc/fixme.png" priority="10000"/>
|
|---|
| 3661 | </rule>
|
|---|
| 3662 |
|
|---|
| 3663 | <rule>
|
|---|
| 3664 | <condition k="note"/>
|
|---|
| 3665 | <icon annotate="true" src="misc/note.png" priority="-10000"/>
|
|---|
| 3666 | </rule>
|
|---|
| 3667 |
|
|---|
| 3668 | <!--public_transport tags -->
|
|---|
| 3669 | <rule>
|
|---|
| 3670 | <condition k="public_transport" v="stop_position"/>
|
|---|
| 3671 | <icon annotate="true" src="misc/no_icon.png" priority="-10"/>
|
|---|
| 3672 | </rule>
|
|---|
| 3673 |
|
|---|
| 3674 | <rule>
|
|---|
| 3675 | <condition k="public_transport" v="platform"/>
|
|---|
| 3676 | <icon annotate="true" src="misc/no_icon.png" priority="-10"/>
|
|---|
| 3677 | <line width="1" realwidth="1" colour="service#809bc0" dashed="9" dashedcolour="livingdashed#00ff00"/>
|
|---|
| 3678 | </rule>
|
|---|
| 3679 |
|
|---|
| 3680 | <!--"deprecated" tags -->
|
|---|
| 3681 |
|
|---|
| 3682 | <!-- historic=museum -> tourism=museum -->
|
|---|
| 3683 | <!-- man_made=power_wind -> power=generator and power_source=wind -->
|
|---|
| 3684 | <!-- man_made=power_hydro -> power=generator and power_source=hydro -->
|
|---|
| 3685 | <!-- man_made=power_fossil -> power=generator and power_source=fossil -->
|
|---|
| 3686 | <!-- man_made=power_nuclear -> power=generator and power_source=nuclear -->
|
|---|
| 3687 | <!-- amenity=park_bench -> amenity=bench -->
|
|---|
| 3688 | <!-- amenity=signpost -> information=guidepost -->
|
|---|
| 3689 | <!-- highway minor - classification now more detailed -->
|
|---|
| 3690 | <!-- highway=stile -> barrier=stile -->
|
|---|
| 3691 | <!-- highway=gate -> barrier=gate -->
|
|---|
| 3692 | <!-- highway=cattle_grid -> barrier=cattle_grid -->
|
|---|
| 3693 | <!-- highway=toll_booth -> barrier=toll_booth -->
|
|---|
| 3694 | <!-- highway=viaduct -> bridge=viaduct -->
|
|---|
| 3695 | <!-- railway=viaduct -> bridge=viaduct -->
|
|---|
| 3696 | <!-- waterway=aqueduct -> bridge=aqueduct -->
|
|---|
| 3697 | <!-- natural=marsh -> natural=wetland -->
|
|---|
| 3698 | <!-- leisure=zoo -> tourism=zoo -->
|
|---|
| 3699 |
|
|---|
| 3700 | </rules>
|
|---|