| 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" priority="-100"/>
|
|---|
| 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" b="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 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 578 | </rule>
|
|---|
| 579 |
|
|---|
| 580 | <rule>
|
|---|
| 581 | <condition k="highway" v="pedestrian"/>
|
|---|
| 582 | <condition k="area" b="yes"/>
|
|---|
| 583 | <line width="3" realwidth="5" colour="foot#00ff00"/>
|
|---|
| 584 | <area colour="foot#00ff00" closed="true"/>
|
|---|
| 585 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 586 | </rule>
|
|---|
| 587 |
|
|---|
| 588 | <rule>
|
|---|
| 589 | <condition k="highway" v="steps"/>
|
|---|
| 590 | <line width="1" realwidth="1" dashed="1" colour="foot#00ff00"/>
|
|---|
| 591 | <icon annotate="true" src="transport/steps.png"/>
|
|---|
| 592 | </rule>
|
|---|
| 593 |
|
|---|
| 594 | <rule>
|
|---|
| 595 | <condition k="highway" v="bus_guideway"/>
|
|---|
| 596 | <line width="1" colour="rail#404040" dashed="true"/>
|
|---|
| 597 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 598 | </rule>
|
|---|
| 599 |
|
|---|
| 600 | <rule>
|
|---|
| 601 | <condition k="direction" v="clockwise"/>
|
|---|
| 602 | <icon annotate="true" src="vehicle/restriction/roundabout_left.png" priority="10000"/>
|
|---|
| 603 | </rule>
|
|---|
| 604 |
|
|---|
| 605 | <rule>
|
|---|
| 606 | <condition k="highway" v="mini_roundabout"/>
|
|---|
| 607 | <icon annotate="true" src="vehicle/restriction/roundabout_right.png"/>
|
|---|
| 608 | <!--icon annotate="true" src="vehicle/restriction/roundabout_left.png"/-->
|
|---|
| 609 | </rule>
|
|---|
| 610 |
|
|---|
| 611 | <rule>
|
|---|
| 612 | <condition k="highway" v="stop"/>
|
|---|
| 613 | <icon annotate="true" src="vehicle/restriction/stop.png"/>
|
|---|
| 614 | </rule>
|
|---|
| 615 |
|
|---|
| 616 | <rule>
|
|---|
| 617 | <condition k="highway" v="give_way"/>
|
|---|
| 618 | <icon annotate="true" src="vehicle/restriction/right_of_way.png"/>
|
|---|
| 619 | </rule>
|
|---|
| 620 |
|
|---|
| 621 | <rule>
|
|---|
| 622 | <condition k="highway" v="traffic_signals"/>
|
|---|
| 623 | <icon annotate="true" src="vehicle/restriction/traffic-light.png"/>
|
|---|
| 624 | </rule>
|
|---|
| 625 |
|
|---|
| 626 | <rule>
|
|---|
| 627 | <condition k="highway" v="street_lamp"/>
|
|---|
| 628 | <icon annotate="true" src="misc/streetlamp.png"/>
|
|---|
| 629 | </rule>
|
|---|
| 630 |
|
|---|
| 631 | <rule>
|
|---|
| 632 | <condition k="highway" v="speed_camera"/>
|
|---|
| 633 | <icon annotate="true" src="vehicle/restriction/speed_trap.png"/>
|
|---|
| 634 | </rule>
|
|---|
| 635 |
|
|---|
| 636 | <rule>
|
|---|
| 637 | <condition k="traffic_sign" v="city_limit"/>
|
|---|
| 638 | <icon annotate="true" src="vehicle/restriction/citylimit.png"/>
|
|---|
| 639 | </rule>
|
|---|
| 640 |
|
|---|
| 641 | <rule>
|
|---|
| 642 | <condition k="highway" v="crossing"/>
|
|---|
| 643 | <icon annotate="true" src="vehicle/zebra_crossing.png"/>
|
|---|
| 644 | </rule>
|
|---|
| 645 |
|
|---|
| 646 | <rule>
|
|---|
| 647 | <condition k="highway" v="incline"/>
|
|---|
| 648 | <icon annotate="true" src="vehicle/restriction/incline.png"/>
|
|---|
| 649 | </rule>
|
|---|
| 650 |
|
|---|
| 651 | <rule>
|
|---|
| 652 | <condition k="highway" v="incline_steep"/>
|
|---|
| 653 | <icon annotate="true" src="vehicle/restriction/incline.png"/>
|
|---|
| 654 | </rule>
|
|---|
| 655 |
|
|---|
| 656 | <rule>
|
|---|
| 657 | <condition k="highway" v="motorway_junction"/>
|
|---|
| 658 | <icon annotate="true" src="vehicle/exit.png"/>
|
|---|
| 659 | </rule>
|
|---|
| 660 |
|
|---|
| 661 | <rule>
|
|---|
| 662 | <condition k="highway" v="services"/>
|
|---|
| 663 | <area colour="services#c0c0c0"/>
|
|---|
| 664 | <icon annotate="true" src="vehicle/services.png"/>
|
|---|
| 665 | </rule>
|
|---|
| 666 |
|
|---|
| 667 | <rule>
|
|---|
| 668 | <condition k="highway" v="rest_area"/>
|
|---|
| 669 | <area colour="services#c0c0c0"/>
|
|---|
| 670 | <icon annotate="true" src="vehicle/parking.png"/>
|
|---|
| 671 | </rule>
|
|---|
| 672 |
|
|---|
| 673 | <rule>
|
|---|
| 674 | <condition k="highway" v="ford"/>
|
|---|
| 675 | <line width="2" realwidth="5" colour="ford#ff0000"/>
|
|---|
| 676 | <icon annotate="true" src="vehicle/ford.png"/>
|
|---|
| 677 | </rule>
|
|---|
| 678 |
|
|---|
| 679 | <rule>
|
|---|
| 680 | <condition k="ford" v="yes"/>
|
|---|
| 681 | <linemod mode="over" width="2" realwidth="5" colour="water#0000ff" dashed="true"/>
|
|---|
| 682 | <icon annotate="true" src="vehicle/ford.png"/>
|
|---|
| 683 | </rule>
|
|---|
| 684 |
|
|---|
| 685 | <rule>
|
|---|
| 686 | <condition k="highway" v="bus_stop"/>
|
|---|
| 687 | <icon annotate="true" src="transport/bus_small.png"/>
|
|---|
| 688 | </rule>
|
|---|
| 689 |
|
|---|
| 690 | <rule>
|
|---|
| 691 | <condition k="highway" v="platform"/>
|
|---|
| 692 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 693 | <line width="2" colour="highway_platform#c0c0c0"/>
|
|---|
| 694 | <area colour="highway_platform#c0c0c0" closed="true"/>
|
|---|
| 695 | </rule>
|
|---|
| 696 |
|
|---|
| 697 | <rule>
|
|---|
| 698 | <condition k="highway" v="turning_circle"/>
|
|---|
| 699 | <icon annotate="true" src="vehicle/turning_circle.png"/>
|
|---|
| 700 | </rule>
|
|---|
| 701 |
|
|---|
| 702 | <rule>
|
|---|
| 703 | <condition k="highway" v="passing_place"/>
|
|---|
| 704 | <icon annotate="true" src="vehicle/passing_place.png"/>
|
|---|
| 705 | </rule>
|
|---|
| 706 |
|
|---|
| 707 | <rule>
|
|---|
| 708 | <condition k="highway" v="construction"/>
|
|---|
| 709 | <line width="2" realwidth="5" colour="construction#ffff00" dashed="true" priority="10"/>
|
|---|
| 710 | <icon src="misc/construction.png" priority="10"/>
|
|---|
| 711 | </rule>
|
|---|
| 712 |
|
|---|
| 713 | <rule>
|
|---|
| 714 | <condition k="highway" v="emergency_access_point"/>
|
|---|
| 715 | <icon src="service/emergency_access_point.png"/>
|
|---|
| 716 | <area colour="emergency_access_point#c0c0c0"/>
|
|---|
| 717 | </rule>
|
|---|
| 718 |
|
|---|
| 719 | <!-- traffic_calming tag -->
|
|---|
| 720 |
|
|---|
| 721 | <rule>
|
|---|
| 722 | <condition k="traffic_calming"/>
|
|---|
| 723 | <icon annotate="true" src="vehicle/traffic_calming.png" priority="-5"/>
|
|---|
| 724 | </rule>
|
|---|
| 725 |
|
|---|
| 726 | <rule>
|
|---|
| 727 | <condition k="traffic_calming" v="chicane"/>
|
|---|
| 728 | <icon annotate="true" src="vehicle/chicane.png"/>
|
|---|
| 729 | </rule>
|
|---|
| 730 |
|
|---|
| 731 | <rule>
|
|---|
| 732 | <condition k="highway" v="choker"/>
|
|---|
| 733 | <icon annotate="true" src="vehicle/passing_place.png"/>
|
|---|
| 734 | </rule>
|
|---|
| 735 |
|
|---|
| 736 | <rule>
|
|---|
| 737 | <condition k="highway" v="cushion"/>
|
|---|
| 738 | <icon annotate="true" src="vehicle/passing_place.png"/>
|
|---|
| 739 | </rule>
|
|---|
| 740 |
|
|---|
| 741 | <!-- junction tag -->
|
|---|
| 742 |
|
|---|
| 743 | <rule>
|
|---|
| 744 | <condition k="junction" v="roundabout"/>
|
|---|
| 745 | <icon annotate="true" src="vehicle/restriction/roundabout_right.png"/>
|
|---|
| 746 | </rule>
|
|---|
| 747 |
|
|---|
| 748 | <!-- cycleway tags -->
|
|---|
| 749 |
|
|---|
| 750 | <rule>
|
|---|
| 751 | <condition k="cycleway" v="lane"/>
|
|---|
| 752 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="8,14"/>
|
|---|
| 753 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 754 | </rule>
|
|---|
| 755 |
|
|---|
| 756 | <rule>
|
|---|
| 757 | <condition k="cycleway" v="opposite_lane"/>
|
|---|
| 758 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="8,14"/>
|
|---|
| 759 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 760 | </rule>
|
|---|
| 761 |
|
|---|
| 762 | <rule>
|
|---|
| 763 | <condition k="cycleway" v="track"/>
|
|---|
| 764 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="14,14"/>
|
|---|
| 765 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 766 | </rule>
|
|---|
| 767 |
|
|---|
| 768 | <rule>
|
|---|
| 769 | <condition k="cycleway" v="opposite_track"/>
|
|---|
| 770 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="14,14"/>
|
|---|
| 771 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 772 | </rule>
|
|---|
| 773 |
|
|---|
| 774 | <rule>
|
|---|
| 775 | <condition k="cycleway" v="opposite"/>
|
|---|
| 776 | <linemod width="+0" mode="over" colour="bicycle#b100ff" dashed="4,10"/>
|
|---|
| 777 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 778 | </rule>
|
|---|
| 779 |
|
|---|
| 780 | <!-- tracktype tags -->
|
|---|
| 781 |
|
|---|
| 782 | <rule>
|
|---|
| 783 | <condition k="tracktype" v="grade1"/>
|
|---|
| 784 | <line width="1" realwidth="3" dashed="2" colour="highway_track#006600"/>
|
|---|
| 785 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 786 | </rule>
|
|---|
| 787 |
|
|---|
| 788 | <rule>
|
|---|
| 789 | <condition k="tracktype" v="grade2"/>
|
|---|
| 790 | <line width="1" realwidth="3" dashed="4" colour="highway_track#006600"/>
|
|---|
| 791 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 792 | </rule>
|
|---|
| 793 |
|
|---|
| 794 | <rule>
|
|---|
| 795 | <condition k="tracktype" v="grade3"/>
|
|---|
| 796 | <line width="1" realwidth="3" dashed="6" colour="highway_track#006600"/>
|
|---|
| 797 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 798 | </rule>
|
|---|
| 799 |
|
|---|
| 800 | <rule>
|
|---|
| 801 | <condition k="tracktype" v="grade4"/>
|
|---|
| 802 | <line width="1" realwidth="3" dashed="8" colour="highway_track#006600"/>
|
|---|
| 803 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 804 | </rule>
|
|---|
| 805 |
|
|---|
| 806 | <rule>
|
|---|
| 807 | <condition k="tracktype" v="grade5"/>
|
|---|
| 808 | <line width="1" realwidth="3" dashed="10" colour="highway_track#006600"/>
|
|---|
| 809 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 810 | </rule>
|
|---|
| 811 |
|
|---|
| 812 | <!--waterway tags -->
|
|---|
| 813 |
|
|---|
| 814 | <rule>
|
|---|
| 815 | <condition k="waterway" v="river"/>
|
|---|
| 816 | <line width="2" realwidth="5" colour="water#0000ff"/>
|
|---|
| 817 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 818 | </rule>
|
|---|
| 819 |
|
|---|
| 820 | <rule>
|
|---|
| 821 | <condition k="waterway" v="riverbank"/>
|
|---|
| 822 | <line width="1" colour="riverbank#0000cf" priority="10000"/>
|
|---|
| 823 | <area colour="riverbank#0000cf" priority="10000"/>
|
|---|
| 824 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 825 | </rule>
|
|---|
| 826 |
|
|---|
| 827 | <rule>
|
|---|
| 828 | <condition k="waterway" v="canal"/>
|
|---|
| 829 | <line width="2" realwidth="2" colour="water#0000ff"/>
|
|---|
| 830 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 831 | </rule>
|
|---|
| 832 |
|
|---|
| 833 | <rule>
|
|---|
| 834 | <condition k="waterway" v="stream"/>
|
|---|
| 835 | <line width="1" realwidth="1" colour="stream#6600cc"/>
|
|---|
| 836 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 837 | </rule>
|
|---|
| 838 |
|
|---|
| 839 | <rule>
|
|---|
| 840 | <condition k="waterway" v="ditch"/>
|
|---|
| 841 | <line width="1" realwidth="1" colour="water#0000ff"/>
|
|---|
| 842 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 843 | </rule>
|
|---|
| 844 | <rule>
|
|---|
| 845 | <condition k="waterway" v="drain"/>
|
|---|
| 846 | <line width="1" realwidth="1" colour="water#0000ff"/>
|
|---|
| 847 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 848 | </rule>
|
|---|
| 849 |
|
|---|
| 850 | <rule>
|
|---|
| 851 | <condition k="waterway" v="dock"/>
|
|---|
| 852 | <area colour="dock#0000cf"/>
|
|---|
| 853 | <icon annotate="true" src="nautical/boatyard.png"/>
|
|---|
| 854 | </rule>
|
|---|
| 855 |
|
|---|
| 856 | <rule>
|
|---|
| 857 | <condition k="waterway" v="lock_gate"/>
|
|---|
| 858 | <icon annotate="true" src="nautical/lock_gate.png"/>
|
|---|
| 859 | </rule>
|
|---|
| 860 |
|
|---|
| 861 | <rule>
|
|---|
| 862 | <condition k="waterway" v="turning_point"/>
|
|---|
| 863 | <icon annotate="true" src="nautical/turning.png"/>
|
|---|
| 864 | </rule>
|
|---|
| 865 |
|
|---|
| 866 | <rule>
|
|---|
| 867 | <condition k="waterway" v="boatyard"/>
|
|---|
| 868 | <icon annotate="true" src="nautical/boatyard.png"/>
|
|---|
| 869 | <area colour="manmade#d8d8d8"/>
|
|---|
| 870 | </rule>
|
|---|
| 871 |
|
|---|
| 872 | <rule>
|
|---|
| 873 | <condition k="waterway" v="water_point"/>
|
|---|
| 874 | <icon annotate="true" src="accommodation/camping/water.png"/>
|
|---|
| 875 | </rule>
|
|---|
| 876 |
|
|---|
| 877 | <rule>
|
|---|
| 878 | <condition k="waterway" v="waste_disposal"/>
|
|---|
| 879 | <icon annotate="true" src="accommodation/camping/wastewater.png"/>
|
|---|
| 880 | </rule>
|
|---|
| 881 |
|
|---|
| 882 | <rule>
|
|---|
| 883 | <condition k="waterway" v="mooring"/>
|
|---|
| 884 | <icon annotate="true" src="nautical/marina.png"/>
|
|---|
| 885 | </rule>
|
|---|
| 886 |
|
|---|
| 887 | <rule>
|
|---|
| 888 | <condition k="waterway" v="weir"/>
|
|---|
| 889 | <icon annotate="true" src="nautical/weir.png"/>
|
|---|
| 890 | <line width="2" colour="manmade#d8d8d8"/>
|
|---|
| 891 | </rule>
|
|---|
| 892 |
|
|---|
| 893 | <rule>
|
|---|
| 894 | <condition k="waterway" v="rapids"/>
|
|---|
| 895 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 896 | <line width="2" colour="rapids#8080ff"/>
|
|---|
| 897 | </rule>
|
|---|
| 898 |
|
|---|
| 899 | <rule>
|
|---|
| 900 | <condition k="waterway" v="dam"/>
|
|---|
| 901 | <icon annotate="true" src="nautical/dam.png"/>
|
|---|
| 902 | <line width="2" colour="manmade#d8d8d8"/>
|
|---|
| 903 | <area colour="manmade#d8d8d8" closed="true"/>
|
|---|
| 904 | </rule>
|
|---|
| 905 |
|
|---|
| 906 | <rule>
|
|---|
| 907 | <condition k="waterway" v="waterfall"/>
|
|---|
| 908 | <icon annotate="true" src="nautical/waterfall.png"/>
|
|---|
| 909 | <line width="2" colour="manmade#d8d8d8"/>
|
|---|
| 910 | <!-- it's not possible to have both line and area, line seems more likely -->
|
|---|
| 911 | </rule>
|
|---|
| 912 |
|
|---|
| 913 | <!-- railway tags -->
|
|---|
| 914 |
|
|---|
| 915 | <rule>
|
|---|
| 916 | <condition k="railway" v="station"/>
|
|---|
| 917 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 918 | <icon annotate="true" src="transport/railway_station.png"/>
|
|---|
| 919 | </rule>
|
|---|
| 920 |
|
|---|
| 921 | <rule>
|
|---|
| 922 | <condition k="railway" v="halt"/>
|
|---|
| 923 | <icon annotate="true" src="transport/railway_small.png"/>
|
|---|
| 924 | </rule>
|
|---|
| 925 |
|
|---|
| 926 | <rule>
|
|---|
| 927 | <condition k="railway" v="tram_station"/>
|
|---|
| 928 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 929 | <icon annotate="true" src="transport/railway_station.png"/>
|
|---|
| 930 | </rule>
|
|---|
| 931 |
|
|---|
| 932 | <rule>
|
|---|
| 933 | <condition k="railway" v="tram_stop"/>
|
|---|
| 934 | <icon annotate="true" src="transport/tram.png"/>
|
|---|
| 935 | </rule>
|
|---|
| 936 |
|
|---|
| 937 | <rule>
|
|---|
| 938 | <condition k="railway" v="subway_entrance"/>
|
|---|
| 939 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 940 | <icon annotate="true" src="transport/underground.png"/>
|
|---|
| 941 | </rule>
|
|---|
| 942 |
|
|---|
| 943 | <rule>
|
|---|
| 944 | <condition k="railway" v="crossing"/>
|
|---|
| 945 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 946 | <icon annotate="true" src="vehicle/crossing_small.png"/>
|
|---|
| 947 | </rule>
|
|---|
| 948 |
|
|---|
| 949 | <rule>
|
|---|
| 950 | <condition k="railway" v="level_crossing"/>
|
|---|
| 951 | <area colour="railwaypoint#f7efb7"/>
|
|---|
| 952 | <icon annotate="true" src="vehicle/crossing.png"/>
|
|---|
| 953 | </rule>
|
|---|
| 954 |
|
|---|
| 955 | <rule>
|
|---|
| 956 | <condition k="railway" v="rail"/>
|
|---|
| 957 | <line width="2" colour="rail#404040" dashed="true" dashedcolour="raildashed#ffffff"/>
|
|---|
| 958 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 959 | </rule>
|
|---|
| 960 |
|
|---|
| 961 | <rule>
|
|---|
| 962 | <condition k="railway" v="rail"/>
|
|---|
| 963 | <condition k="service" v="siding"/>
|
|---|
| 964 | <line width="1" colour="rail#404040" dashed="true" dashedcolour="raildashed#ffffff" priority="2"/>
|
|---|
| 965 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 966 | </rule>
|
|---|
| 967 |
|
|---|
| 968 | <rule>
|
|---|
| 969 | <condition k="railway" v="rail"/>
|
|---|
| 970 | <condition k="service" v="yard"/>
|
|---|
| 971 | <line width="1" colour="railyard#552200" dashed="true" dashedcolour="raildashed#ffffff" priority="2"/>
|
|---|
| 972 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 973 | </rule>
|
|---|
| 974 |
|
|---|
| 975 | <rule>
|
|---|
| 976 | <condition k="railway" v="rail"/>
|
|---|
| 977 | <condition k="service" v="spur"/>
|
|---|
| 978 | <line width="1" colour="railyard#552200" dashed="true" dashedcolour="raildashed#ffffff" priority="2"/>
|
|---|
| 979 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 980 | </rule>
|
|---|
| 981 |
|
|---|
| 982 | <rule>
|
|---|
| 983 | <condition k="railway" v="tram"/>
|
|---|
| 984 | <!-- prefer way types over tram - draw tram as overlay in joined cases -->
|
|---|
| 985 | <line width="1" colour="otherrail#808080" dashed="true" priority="-10000"/>
|
|---|
| 986 | <linemod mode="over" width="1" colour="railover#202020" dashed="true"/>
|
|---|
| 987 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 988 | </rule>
|
|---|
| 989 |
|
|---|
| 990 | <rule>
|
|---|
| 991 | <condition k="railway" v="light_rail"/>
|
|---|
| 992 | <line width="2" colour="otherrail#808080" dashed="true"/>
|
|---|
| 993 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 994 | </rule>
|
|---|
| 995 |
|
|---|
| 996 | <rule>
|
|---|
| 997 | <condition k="railway" v="subway"/>
|
|---|
| 998 | <line width="1" colour="subway#606060" dashed="true"/>
|
|---|
| 999 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1000 | </rule>
|
|---|
| 1001 |
|
|---|
| 1002 | <rule>
|
|---|
| 1003 | <condition k="railway" v="preserved"/>
|
|---|
| 1004 | <line width="1" colour="oldrail#404040" dashed="true"/>
|
|---|
| 1005 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1006 | </rule>
|
|---|
| 1007 |
|
|---|
| 1008 | <!-- disused often appears together with highway=xy -->
|
|---|
| 1009 | <!-- -> normal display with line, linemod for combinations -->
|
|---|
| 1010 | <rule>
|
|---|
| 1011 | <condition k="railway" v="disused"/>
|
|---|
| 1012 | <line width="1" colour="oldrail#404040" dashed="true" priority="-10000"/>
|
|---|
| 1013 | <linemod mode="over" width="1" colour="oldrail#404040" dashed="true"/>
|
|---|
| 1014 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1015 | </rule>
|
|---|
| 1016 |
|
|---|
| 1017 | <!-- abandoned often appears together with highway=xy -->
|
|---|
| 1018 | <!-- -> normal display with line, linemod for combinations -->
|
|---|
| 1019 | <rule>
|
|---|
| 1020 | <condition k="railway" v="abandoned"/>
|
|---|
| 1021 | <line width="1" colour="oldrail#404040" dashed="true" priority="-10000"/>
|
|---|
| 1022 | <linemod mode="over" width="1" colour="oldrail#404040" dashed="true"/>
|
|---|
| 1023 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1024 | </rule>
|
|---|
| 1025 |
|
|---|
| 1026 | <rule>
|
|---|
| 1027 | <condition k="railway" v="narrow_gauge"/>
|
|---|
| 1028 | <line width="1" colour="rail#404040" dashed="true"/>
|
|---|
| 1029 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1030 | </rule>
|
|---|
| 1031 |
|
|---|
| 1032 | <rule>
|
|---|
| 1033 | <condition k="railway" v="monorail"/>
|
|---|
| 1034 | <line width="1" colour="rail#404040" dashed="true"/>
|
|---|
| 1035 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1036 | </rule>
|
|---|
| 1037 |
|
|---|
| 1038 | <rule>
|
|---|
| 1039 | <condition k="railway" v="turntable"/>
|
|---|
| 1040 | <icon annotate="true" src="transport/turntable.png"/>
|
|---|
| 1041 | <area colour="rail#404040"/>
|
|---|
| 1042 | </rule>
|
|---|
| 1043 |
|
|---|
| 1044 | <rule>
|
|---|
| 1045 | <condition k="railway" v="buffer_stop"/>
|
|---|
| 1046 | <icon annotate="true" src="transport/buffer_stop.png"/>
|
|---|
| 1047 | <area colour="rail#404040"/>
|
|---|
| 1048 | </rule>
|
|---|
| 1049 |
|
|---|
| 1050 | <rule>
|
|---|
| 1051 | <condition k="railway" v="platform"/>
|
|---|
| 1052 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1053 | <line width="2" colour="rail#404040"/>
|
|---|
| 1054 | <area colour="rail#404040" closed="true"/>
|
|---|
| 1055 | </rule>
|
|---|
| 1056 |
|
|---|
| 1057 | <rule>
|
|---|
| 1058 | <condition k="railway" v="funicular"/>
|
|---|
| 1059 | <line width="1" colour="rail#404040" dashed="true"/>
|
|---|
| 1060 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1061 | </rule>
|
|---|
| 1062 |
|
|---|
| 1063 | <rule>
|
|---|
| 1064 | <condition k="service" v="yard"/>
|
|---|
| 1065 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1066 | </rule>
|
|---|
| 1067 |
|
|---|
| 1068 | <rule>
|
|---|
| 1069 | <condition k="service" v="siding"/>
|
|---|
| 1070 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1071 | </rule>
|
|---|
| 1072 |
|
|---|
| 1073 | <rule>
|
|---|
| 1074 | <condition k="service" v="spur"/>
|
|---|
| 1075 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1076 | </rule>
|
|---|
| 1077 |
|
|---|
| 1078 | <!--aeroway tags -->
|
|---|
| 1079 |
|
|---|
| 1080 | <rule>
|
|---|
| 1081 | <condition k="aeroway" v="aerodrome"/>
|
|---|
| 1082 | <line width="2" colour="aeroway#660000" dashed="true"/>
|
|---|
| 1083 | <area colour="aeroway#660000"/>
|
|---|
| 1084 | <icon annotate="true" src="transport/airport.png"/>
|
|---|
| 1085 | </rule>
|
|---|
| 1086 |
|
|---|
| 1087 | <rule>
|
|---|
| 1088 | <condition k="aeroway" v="terminal"/>
|
|---|
| 1089 | <area colour="terminal#bb0000"/>
|
|---|
| 1090 | <icon annotate="true" src="transport/airport/terminal.png"/>
|
|---|
| 1091 | </rule>
|
|---|
| 1092 |
|
|---|
| 1093 | <rule>
|
|---|
| 1094 | <condition k="aeroway" v="helipad"/>
|
|---|
| 1095 | <area colour="aeroway_dark#330000"/>
|
|---|
| 1096 | <icon annotate="true" src="transport/airport/helipad.png"/>
|
|---|
| 1097 | </rule>
|
|---|
| 1098 |
|
|---|
| 1099 | <rule>
|
|---|
| 1100 | <condition k="aeroway" v="runway"/>
|
|---|
| 1101 | <line width="3" realwidth="10" colour="aeroway_dark#330000"/>
|
|---|
| 1102 | <icon annotate="true" src="transport/airport/runway.png"/>
|
|---|
| 1103 | </rule>
|
|---|
| 1104 |
|
|---|
| 1105 | <rule>
|
|---|
| 1106 | <condition k="aeroway" v="taxiway"/>
|
|---|
| 1107 | <line width="2" realwidth="10" colour="aeroway#660000"/>
|
|---|
| 1108 | <icon annotate="true" src="transport/airport/taxiway.png"/>
|
|---|
| 1109 | </rule>
|
|---|
| 1110 |
|
|---|
| 1111 | <rule>
|
|---|
| 1112 | <condition k="aeroway" v="apron"/>
|
|---|
| 1113 | <area colour="aeroway_light#990000"/>
|
|---|
| 1114 | <icon annotate="true" src="transport/airport/apron.png"/>
|
|---|
| 1115 | </rule>
|
|---|
| 1116 |
|
|---|
| 1117 | <rule>
|
|---|
| 1118 | <condition k="aeroway" v="hangar"/>
|
|---|
| 1119 | <area colour="aeroway_light#990000"/>
|
|---|
| 1120 | <icon annotate="true" src="transport/airport/hangar.png"/>
|
|---|
| 1121 | </rule>
|
|---|
| 1122 |
|
|---|
| 1123 | <rule>
|
|---|
| 1124 | <condition k="aeroway" v="gate"/>
|
|---|
| 1125 | <icon annotate="true" src="transport/airport/gate.png"/>
|
|---|
| 1126 | </rule>
|
|---|
| 1127 |
|
|---|
| 1128 | <rule>
|
|---|
| 1129 | <condition k="aeroway" v="windsock"/>
|
|---|
| 1130 | <icon annotate="true" src="transport/airport/windsock.png"/>
|
|---|
| 1131 | </rule>
|
|---|
| 1132 |
|
|---|
| 1133 | <!--aerialway tags -->
|
|---|
| 1134 |
|
|---|
| 1135 | <rule>
|
|---|
| 1136 | <condition k="aerialway" v="cable_car"/>
|
|---|
| 1137 | <line width="1" colour="aerialway#663300" dashed="9"/>
|
|---|
| 1138 | <icon annotate="true" src="transport/aerialway/cable_car.png"/>
|
|---|
| 1139 | </rule>
|
|---|
| 1140 |
|
|---|
| 1141 | <rule>
|
|---|
| 1142 | <condition k="aerialway" v="gondola"/>
|
|---|
| 1143 | <line width="1" colour="aerialway#663300" dashed="9"/>
|
|---|
| 1144 | <icon annotate="true" src="transport/aerialway/gondola.png"/>
|
|---|
| 1145 | </rule>
|
|---|
| 1146 |
|
|---|
| 1147 | <rule>
|
|---|
| 1148 | <condition k="aerialway" v="chair_lift"/>
|
|---|
| 1149 | <line width="1" colour="aerialway#663300" dashed="6"/>
|
|---|
| 1150 | <icon annotate="true" src="transport/aerialway/chair_lift.png"/>
|
|---|
| 1151 | </rule>
|
|---|
| 1152 |
|
|---|
| 1153 | <rule>
|
|---|
| 1154 | <condition k="aerialway" v="drag_lift"/>
|
|---|
| 1155 | <line width="1" colour="aerialway#663300" dashed="3"/>
|
|---|
| 1156 | <icon annotate="true" src="transport/aerialway/drag_lift.png"/>
|
|---|
| 1157 | </rule>
|
|---|
| 1158 |
|
|---|
| 1159 | <rule>
|
|---|
| 1160 | <condition k="aerialway" v="station"/>
|
|---|
| 1161 | <area colour="aerialway#663300"/>
|
|---|
| 1162 | <icon annotate="true" src="transport/aerialway/station.png"/>
|
|---|
| 1163 | </rule>
|
|---|
| 1164 |
|
|---|
| 1165 | <rule>
|
|---|
| 1166 | <condition k="aerialway" v="pylon"/>
|
|---|
| 1167 | <area colour="aerialway#663300"/>
|
|---|
| 1168 | <icon annotate="true" src="misc/landmark/power/tower_small.png"/>
|
|---|
| 1169 | </rule>
|
|---|
| 1170 |
|
|---|
| 1171 | <rule>
|
|---|
| 1172 | <condition k="aerialway" v="goods"/>
|
|---|
| 1173 | <line width="1" colour="aerialway#663300" dashed="1"/>
|
|---|
| 1174 | <icon annotate="true" src="transport/aerialway/goods.png"/>
|
|---|
| 1175 | </rule>
|
|---|
| 1176 |
|
|---|
| 1177 | <!-- piste tags -->
|
|---|
| 1178 |
|
|---|
| 1179 | <rule>
|
|---|
| 1180 | <condition k="piste:difficulty" v="easy"/>
|
|---|
| 1181 | <!--
|
|---|
| 1182 | Show piste indication as linemod if there is already another line
|
|---|
| 1183 | style in place (e.g. from highway=track), otherwise add a proper line
|
|---|
| 1184 | style that looks the same.
|
|---|
| 1185 | If the proper line style applies, the linemod is suppressed, so it
|
|---|
| 1186 | renders only one style for each way.
|
|---|
| 1187 | -->
|
|---|
| 1188 | <line width="6" colour="piste_easy#0000ff" priority="-100000"/>
|
|---|
| 1189 | <linemod width="6" mode="under" colour="piste_easy#0000ff"/>
|
|---|
| 1190 | <area colour="piste_easy#0000ff" closed="true"/>
|
|---|
| 1191 | <icon src="sport/skiing.png"/>
|
|---|
| 1192 | </rule>
|
|---|
| 1193 |
|
|---|
| 1194 | <rule>
|
|---|
| 1195 | <condition k="piste:difficulty" v="intermediate"/>
|
|---|
| 1196 | <line width="6" colour="piste_intermediate#ff0000" priority="-100000"/>
|
|---|
| 1197 | <linemod width="6" mode="under" colour="piste_intermediate#ff0000"/>
|
|---|
| 1198 | <area colour="piste_intermediate#ff0000" closed="true"/>
|
|---|
| 1199 | <icon src="sport/skiing.png"/>
|
|---|
| 1200 | </rule>
|
|---|
| 1201 |
|
|---|
| 1202 | <rule>
|
|---|
| 1203 | <condition k="piste:difficulty" v="advanced"/>
|
|---|
| 1204 | <line width="6" colour="piste_advanced#606060" priority="-100000"/>
|
|---|
| 1205 | <linemod width="6" mode="under" colour="piste_advanced#606060"/>
|
|---|
| 1206 | <area colour="piste_advanced#606060" closed="true"/>
|
|---|
| 1207 | <icon src="sport/skiing.png"/>
|
|---|
| 1208 | </rule>
|
|---|
| 1209 |
|
|---|
| 1210 | <rule>
|
|---|
| 1211 | <condition k="piste:difficulty" v="expert"/>
|
|---|
| 1212 | <line width="6" colour="piste_expert#606060" priority="-100000"/>
|
|---|
| 1213 | <linemod width="6" mode="under" colour="piste_expert#606060"/>
|
|---|
| 1214 | <area colour="piste_expert#606060" closed="true"/>
|
|---|
| 1215 | <icon src="sport/skiing.png"/>
|
|---|
| 1216 | </rule>
|
|---|
| 1217 |
|
|---|
| 1218 | <rule>
|
|---|
| 1219 | <condition k="piste:difficulty" v="freeride"/>
|
|---|
| 1220 | <line width="6" colour="piste_freeride#ffff00" priority="-100000"/>
|
|---|
| 1221 | <linemod width="6" mode="under" colour="piste_freeride#ffff00"/>
|
|---|
| 1222 | <area colour="piste_freeride#ffff00" closed="true"/>
|
|---|
| 1223 | <icon src="sport/skiing.png"/>
|
|---|
| 1224 | </rule>
|
|---|
| 1225 |
|
|---|
| 1226 | <rule>
|
|---|
| 1227 | <condition k="piste:difficulty" v="novice"/>
|
|---|
| 1228 | <line width="6" colour="piste_novice#00ff00" priority="-100000"/>
|
|---|
| 1229 | <linemod width="6" mode="under" colour="piste_novice#00ff00"/>
|
|---|
| 1230 | <area colour="piste_novice#00ff00" closed="true"/>
|
|---|
| 1231 | <icon src="sport/skiing.png"/>
|
|---|
| 1232 | </rule>
|
|---|
| 1233 |
|
|---|
| 1234 | <!--power tags -->
|
|---|
| 1235 |
|
|---|
| 1236 | <rule>
|
|---|
| 1237 | <condition k="power" v="tower"/>
|
|---|
| 1238 | <icon annotate="true" src="misc/landmark/power/tower_small.png"/>
|
|---|
| 1239 | <area colour="power#eeeeee"/>
|
|---|
| 1240 | </rule>
|
|---|
| 1241 |
|
|---|
| 1242 | <rule>
|
|---|
| 1243 | <condition k="power" v="pole"/>
|
|---|
| 1244 | <icon annotate="true" src="misc/landmark/power/pole.png"/>
|
|---|
| 1245 | </rule>
|
|---|
| 1246 |
|
|---|
| 1247 | <rule>
|
|---|
| 1248 | <condition k="power" v="line"/>
|
|---|
| 1249 | <line width="1" colour="power#eeeeee"/>
|
|---|
| 1250 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1251 | </rule>
|
|---|
| 1252 |
|
|---|
| 1253 | <rule>
|
|---|
| 1254 | <condition k="power" v="minor_line"/>
|
|---|
| 1255 | <line width="1" colour="power#eeeeee"/>
|
|---|
| 1256 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1257 | </rule>
|
|---|
| 1258 |
|
|---|
| 1259 | <rule>
|
|---|
| 1260 | <condition k="power" v="station"/>
|
|---|
| 1261 | <icon annotate="true" src="misc/landmark/power.png"/>
|
|---|
| 1262 | <area colour="power#eeeeee"/>
|
|---|
| 1263 | </rule>
|
|---|
| 1264 |
|
|---|
| 1265 | <rule>
|
|---|
| 1266 | <condition k="power" v="sub_station"/>
|
|---|
| 1267 | <icon annotate="true" src="misc/landmark/power.png"/>
|
|---|
| 1268 | <area colour="power#eeeeee"/>
|
|---|
| 1269 | </rule>
|
|---|
| 1270 |
|
|---|
| 1271 | <rule>
|
|---|
| 1272 | <condition k="power" v="cable_distribution_cabinet"/>
|
|---|
| 1273 | <icon annotate="true" src="misc/landmark/power.png"/>
|
|---|
| 1274 | </rule>
|
|---|
| 1275 |
|
|---|
| 1276 | <rule>
|
|---|
| 1277 | <condition k="power" v="transformer"/>
|
|---|
| 1278 | <icon annotate="true" src="misc/landmark/power/transformer.png"/>
|
|---|
| 1279 | <area colour="power#eeeeee"/>
|
|---|
| 1280 | </rule>
|
|---|
| 1281 |
|
|---|
| 1282 | <!-- power_source is depricated by the wiki, but still in use -->
|
|---|
| 1283 | <rule>
|
|---|
| 1284 | <condition k="power_source" v="wind"/>
|
|---|
| 1285 | <icon annotate="true" src="misc/landmark/power/wind.png"/>
|
|---|
| 1286 | <area colour="power#eeeeee"/>
|
|---|
| 1287 | </rule>
|
|---|
| 1288 |
|
|---|
| 1289 | <rule>
|
|---|
| 1290 | <condition k="power_source" v="hydro"/>
|
|---|
| 1291 | <icon annotate="true" src="misc/landmark/power/hydro.png"/>
|
|---|
| 1292 | <area colour="power#eeeeee"/>
|
|---|
| 1293 | </rule>
|
|---|
| 1294 |
|
|---|
| 1295 | <rule>
|
|---|
| 1296 | <condition k="power_source" v="fossil"/>
|
|---|
| 1297 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1298 | <area colour="power#eeeeee"/>
|
|---|
| 1299 | </rule>
|
|---|
| 1300 |
|
|---|
| 1301 | <rule>
|
|---|
| 1302 | <condition k="power_source" v="coal"/>
|
|---|
| 1303 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1304 | <area colour="power#eeeeee"/>
|
|---|
| 1305 | </rule>
|
|---|
| 1306 |
|
|---|
| 1307 | <rule>
|
|---|
| 1308 | <condition k="power_source" v="gas"/>
|
|---|
| 1309 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1310 | <area colour="power#eeeeee"/>
|
|---|
| 1311 | </rule>
|
|---|
| 1312 |
|
|---|
| 1313 | <rule>
|
|---|
| 1314 | <condition k="power_source" v="photovoltaic"/>
|
|---|
| 1315 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1316 | <area colour="power#eeeeee"/>
|
|---|
| 1317 | </rule>
|
|---|
| 1318 |
|
|---|
| 1319 | <rule>
|
|---|
| 1320 | <condition k="power_source" v="nuclear"/>
|
|---|
| 1321 | <icon annotate="true" src="misc/landmark/power/nuclear.png"/>
|
|---|
| 1322 | <area colour="power#eeeeee"/>
|
|---|
| 1323 | </rule>
|
|---|
| 1324 |
|
|---|
| 1325 | <!-- generator:source replaces power_source -->
|
|---|
| 1326 | <rule>
|
|---|
| 1327 | <condition k="generator:source" v="wind"/>
|
|---|
| 1328 | <icon annotate="true" src="misc/landmark/power/wind.png"/>
|
|---|
| 1329 | <area colour="power#eeeeee"/>
|
|---|
| 1330 | </rule>
|
|---|
| 1331 |
|
|---|
| 1332 | <rule>
|
|---|
| 1333 | <condition k="generator:source" v="hydro"/>
|
|---|
| 1334 | <icon annotate="true" src="misc/landmark/power/hydro.png"/>
|
|---|
| 1335 | <area colour="power#eeeeee"/>
|
|---|
| 1336 | </rule>
|
|---|
| 1337 |
|
|---|
| 1338 | <rule>
|
|---|
| 1339 | <condition k="generator:source" v="coal"/>
|
|---|
| 1340 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1341 | <area colour="power#eeeeee"/>
|
|---|
| 1342 | </rule>
|
|---|
| 1343 |
|
|---|
| 1344 | <rule>
|
|---|
| 1345 | <condition k="generator:source" v="gas"/>
|
|---|
| 1346 | <icon annotate="true" src="misc/landmark/power/fossil.png"/>
|
|---|
| 1347 | <area colour="power#eeeeee"/>
|
|---|
| 1348 | </rule>
|
|---|
| 1349 |
|
|---|
| 1350 | <rule>
|
|---|
| 1351 | <condition k="generator:source" v="nuclear"/>
|
|---|
| 1352 | <icon annotate="true" src="misc/landmark/power/nuclear.png"/>
|
|---|
| 1353 | <area colour="power#eeeeee"/>
|
|---|
| 1354 | </rule>
|
|---|
| 1355 |
|
|---|
| 1356 | <rule>
|
|---|
| 1357 | <condition k="power" v="generator"/>
|
|---|
| 1358 | <icon annotate="true" src="misc/landmark/power.png" priority="-10000"/>
|
|---|
| 1359 | <area colour="power#eeeeee"/>
|
|---|
| 1360 | </rule>
|
|---|
| 1361 |
|
|---|
| 1362 | <!--man_made tags -->
|
|---|
| 1363 |
|
|---|
| 1364 | <rule>
|
|---|
| 1365 | <condition k="man_made" v="beacon"/>
|
|---|
| 1366 | <icon annotate="true" src="misc/landmark/beacon.png"/>
|
|---|
| 1367 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1368 | </rule>
|
|---|
| 1369 |
|
|---|
| 1370 | <rule>
|
|---|
| 1371 | <condition k="man_made" v="chimney"/>
|
|---|
| 1372 | <icon annotate="true" src="misc/landmark/chimney.png"/>
|
|---|
| 1373 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1374 | </rule>
|
|---|
| 1375 |
|
|---|
| 1376 | <rule>
|
|---|
| 1377 | <condition k="man_made" v="crane"/>
|
|---|
| 1378 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1379 | <icon annotate="true" src="misc/landmark/crane.png"/>
|
|---|
| 1380 | </rule>
|
|---|
| 1381 |
|
|---|
| 1382 | <rule>
|
|---|
| 1383 | <condition k="man_made" v="flagpole"/>
|
|---|
| 1384 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1385 | <icon annotate="true" src="misc/flag.png"/>
|
|---|
| 1386 | </rule>
|
|---|
| 1387 |
|
|---|
| 1388 | <rule>
|
|---|
| 1389 | <condition k="man_made" v="gasometer"/>
|
|---|
| 1390 | <icon annotate="true" src="misc/landmark/gasometer.png"/>
|
|---|
| 1391 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1392 | </rule>
|
|---|
| 1393 |
|
|---|
| 1394 | <rule>
|
|---|
| 1395 | <condition k="man_made" v="groyne"/>
|
|---|
| 1396 | <icon annotate="true" src="nautical/groyne.png"/>
|
|---|
| 1397 | <area colour="manmade#d8d8d8" closed="true"/>
|
|---|
| 1398 | </rule>
|
|---|
| 1399 |
|
|---|
| 1400 | <rule>
|
|---|
| 1401 | <condition k="man_made" v="lighthouse"/>
|
|---|
| 1402 | <icon annotate="true" src="misc/landmark/lighthouse.png"/>
|
|---|
| 1403 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1404 | </rule>
|
|---|
| 1405 |
|
|---|
| 1406 | <rule>
|
|---|
| 1407 | <condition k="man_made" v="measurement_station"/>
|
|---|
| 1408 | <icon annotate="true" src="misc/landmark/measurement_station.png"/>
|
|---|
| 1409 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1410 | </rule>
|
|---|
| 1411 |
|
|---|
| 1412 | <rule>
|
|---|
| 1413 | <condition k="man_made" v="mineshaft"/>
|
|---|
| 1414 | <icon annotate="true" src="misc/landmark/mine.png"/>
|
|---|
| 1415 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1416 | </rule>
|
|---|
| 1417 |
|
|---|
| 1418 | <rule>
|
|---|
| 1419 | <condition k="man_made" v="adit"/>
|
|---|
| 1420 | <icon annotate="true" src="misc/landmark/adit.png"/>
|
|---|
| 1421 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1422 | </rule>
|
|---|
| 1423 |
|
|---|
| 1424 | <rule>
|
|---|
| 1425 | <condition k="man_made" v="pier"/>
|
|---|
| 1426 | <area colour="pier#660000" closed="true"/>
|
|---|
| 1427 | <line width="2" colour="pier#660000"/>
|
|---|
| 1428 | <icon annotate="true" src="nautical/pier.png"/>
|
|---|
| 1429 | </rule>
|
|---|
| 1430 |
|
|---|
| 1431 | <rule>
|
|---|
| 1432 | <condition k="man_made" v="pipeline"/>
|
|---|
| 1433 | <line width="2" colour="pipeline#660000"/>
|
|---|
| 1434 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 1435 | </rule>
|
|---|
| 1436 |
|
|---|
| 1437 | <rule>
|
|---|
| 1438 | <condition k="man_made" v="petroleum_well"/>
|
|---|
| 1439 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1440 | </rule>
|
|---|
| 1441 |
|
|---|
| 1442 | <rule>
|
|---|
| 1443 | <condition k="man_made" v="reservoir_covered"/>
|
|---|
| 1444 | <icon annotate="true" src="misc/landmark/reservoir_covered.png"/>
|
|---|
| 1445 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1446 | </rule>
|
|---|
| 1447 |
|
|---|
| 1448 | <rule>
|
|---|
| 1449 | <condition k="man_made" v="surveillance"/>
|
|---|
| 1450 | <icon annotate="true" src="misc/surveillance.png"/>
|
|---|
| 1451 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1452 | </rule>
|
|---|
| 1453 |
|
|---|
| 1454 | <rule>
|
|---|
| 1455 | <condition k="man_made" v="survey_point"/>
|
|---|
| 1456 | <icon annotate="true" src="misc/landmark/survey_point.png"/>
|
|---|
| 1457 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1458 | </rule>
|
|---|
| 1459 |
|
|---|
| 1460 | <rule>
|
|---|
| 1461 | <condition k="man_made" v="tower"/>
|
|---|
| 1462 | <icon annotate="true" src="misc/landmark/tower.png"/>
|
|---|
| 1463 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1464 | </rule>
|
|---|
| 1465 |
|
|---|
| 1466 | <rule>
|
|---|
| 1467 | <condition k="man_made" v="wastewater_plant"/>
|
|---|
| 1468 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1469 | <icon annotate="true" src="misc/landmark/wastewater_plant.png"/>
|
|---|
| 1470 | </rule>
|
|---|
| 1471 |
|
|---|
| 1472 | <rule>
|
|---|
| 1473 | <condition k="man_made" v="watermill"/>
|
|---|
| 1474 | <icon annotate="true" src="misc/landmark/watermill.png"/>
|
|---|
| 1475 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1476 | </rule>
|
|---|
| 1477 |
|
|---|
| 1478 | <rule>
|
|---|
| 1479 | <condition k="man_made" v="water_tower"/>
|
|---|
| 1480 | <icon annotate="true" src="misc/landmark/water_tower.png"/>
|
|---|
| 1481 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1482 | </rule>
|
|---|
| 1483 |
|
|---|
| 1484 | <rule>
|
|---|
| 1485 | <condition k="man_made" v="water_well"/>
|
|---|
| 1486 | <icon annotate="true" src="misc/landmark/water_well.png"/>
|
|---|
| 1487 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1488 | </rule>
|
|---|
| 1489 |
|
|---|
| 1490 | <rule>
|
|---|
| 1491 | <condition k="man_made" v="windmill"/>
|
|---|
| 1492 | <icon annotate="true" src="misc/landmark/windmill.png"/>
|
|---|
| 1493 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1494 | </rule>
|
|---|
| 1495 |
|
|---|
| 1496 | <rule>
|
|---|
| 1497 | <condition k="man_made" v="works"/>
|
|---|
| 1498 | <icon annotate="true" src="misc/landmark/works.png"/>
|
|---|
| 1499 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1500 | </rule>
|
|---|
| 1501 |
|
|---|
| 1502 | <rule>
|
|---|
| 1503 | <condition k="man_made" v="water_works"/>
|
|---|
| 1504 | <icon annotate="true" src="misc/landmark/water_works.png"/>
|
|---|
| 1505 | <area colour="manmade#d8d8d8"/>
|
|---|
| 1506 | </rule>
|
|---|
| 1507 |
|
|---|
| 1508 | <!--leisure tags -->
|
|---|
| 1509 |
|
|---|
| 1510 | <rule>
|
|---|
| 1511 | <condition k="leisure" v="sports_centre"/>
|
|---|
| 1512 | <icon annotate="true" src="sport/centre.png"/>
|
|---|
| 1513 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1514 | </rule>
|
|---|
| 1515 |
|
|---|
| 1516 | <rule>
|
|---|
| 1517 | <condition k="leisure" v="golf_course"/>
|
|---|
| 1518 | <icon annotate="true" src="sport/golf.png"/>
|
|---|
| 1519 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1520 | </rule>
|
|---|
| 1521 |
|
|---|
| 1522 | <rule>
|
|---|
| 1523 | <condition k="leisure" v="stadium"/>
|
|---|
| 1524 | <icon annotate="true" src="sport/stadium.png"/>
|
|---|
| 1525 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1526 | </rule>
|
|---|
| 1527 |
|
|---|
| 1528 | <rule>
|
|---|
| 1529 | <condition k="leisure" v="track"/>
|
|---|
| 1530 | <icon annotate="true" src="sport/track.png"/>
|
|---|
| 1531 | <area colour="leisure#c7f1a3" closed="true"/>
|
|---|
| 1532 | <line width="2" colour="leisure#c7f1a3"/>
|
|---|
| 1533 | </rule>
|
|---|
| 1534 |
|
|---|
| 1535 | <rule>
|
|---|
| 1536 | <condition k="leisure" v="pitch"/>
|
|---|
| 1537 | <icon annotate="true" src="sport/pitch.png"/>
|
|---|
| 1538 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1539 | </rule>
|
|---|
| 1540 |
|
|---|
| 1541 | <rule>
|
|---|
| 1542 | <condition k="leisure" v="water_park"/>
|
|---|
| 1543 | <icon annotate="true" src="leisure/water_park.png"/>
|
|---|
| 1544 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1545 | </rule>
|
|---|
| 1546 |
|
|---|
| 1547 | <rule>
|
|---|
| 1548 | <condition k="leisure" v="marina"/>
|
|---|
| 1549 | <icon annotate="true" src="nautical/marina.png"/>
|
|---|
| 1550 | <area colour="marina#0070cf"/>
|
|---|
| 1551 | </rule>
|
|---|
| 1552 |
|
|---|
| 1553 | <rule>
|
|---|
| 1554 | <condition k="leisure" v="slipway"/>
|
|---|
| 1555 | <icon annotate="true" src="nautical/slipway.png"/>
|
|---|
| 1556 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1557 | </rule>
|
|---|
| 1558 |
|
|---|
| 1559 | <rule>
|
|---|
| 1560 | <condition k="leisure" v="fishing"/>
|
|---|
| 1561 | <icon annotate="true" src="sport/fishing.png"/>
|
|---|
| 1562 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1563 | </rule>
|
|---|
| 1564 |
|
|---|
| 1565 | <rule>
|
|---|
| 1566 | <condition k="leisure" v="nature_reserve"/>
|
|---|
| 1567 | <icon annotate="true" src="leisure/nature_reserve.png"/>
|
|---|
| 1568 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1569 | </rule>
|
|---|
| 1570 |
|
|---|
| 1571 | <rule>
|
|---|
| 1572 | <condition k="leisure" v="park"/>
|
|---|
| 1573 | <icon annotate="true" src="leisure/park.png"/>
|
|---|
| 1574 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1575 | </rule>
|
|---|
| 1576 |
|
|---|
| 1577 | <rule>
|
|---|
| 1578 | <condition k="leisure" v="playground"/>
|
|---|
| 1579 | <icon annotate="true" src="leisure/playground.png"/>
|
|---|
| 1580 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1581 | </rule>
|
|---|
| 1582 |
|
|---|
| 1583 | <rule>
|
|---|
| 1584 | <condition k="leisure" v="garden"/>
|
|---|
| 1585 | <icon annotate="true" src="leisure/garden.png"/>
|
|---|
| 1586 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1587 | </rule>
|
|---|
| 1588 |
|
|---|
| 1589 | <rule>
|
|---|
| 1590 | <condition k="leisure" v="common"/>
|
|---|
| 1591 | <icon annotate="true" src="leisure/common.png"/>
|
|---|
| 1592 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1593 | </rule>
|
|---|
| 1594 |
|
|---|
| 1595 | <rule>
|
|---|
| 1596 | <condition k="leisure" v="swimming_pool"/>
|
|---|
| 1597 | <icon annotate="true" src="sport/pool.png"/>
|
|---|
| 1598 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1599 | </rule>
|
|---|
| 1600 |
|
|---|
| 1601 | <rule>
|
|---|
| 1602 | <condition k="leisure" v="miniature_golf"/>
|
|---|
| 1603 | <icon annotate="true" src="sport/golf.png"/>
|
|---|
| 1604 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1605 | </rule>
|
|---|
| 1606 |
|
|---|
| 1607 | <rule>
|
|---|
| 1608 | <condition k="leisure" v="dog_park"/>
|
|---|
| 1609 | <icon annotate="true" src="leisure/dog.png"/>
|
|---|
| 1610 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1611 | </rule>
|
|---|
| 1612 |
|
|---|
| 1613 | <rule>
|
|---|
| 1614 | <condition k="leisure" v="ice_rink"/>
|
|---|
| 1615 | <icon annotate="true" src="sport/hockey.png"/>
|
|---|
| 1616 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1617 | </rule>
|
|---|
| 1618 |
|
|---|
| 1619 | <rule>
|
|---|
| 1620 | <condition k="leisure" v="sauna"/>
|
|---|
| 1621 | <icon annotate="true" src="leisure/sauna.png"/>
|
|---|
| 1622 | <area colour="leisure#c7f1a3"/>
|
|---|
| 1623 | </rule>
|
|---|
| 1624 |
|
|---|
| 1625 | <!--amenity tags -->
|
|---|
| 1626 |
|
|---|
| 1627 | <rule>
|
|---|
| 1628 | <condition k="amenity" v="pub"/>
|
|---|
| 1629 | <icon annotate="true" src="food/pub.png"/>
|
|---|
| 1630 | <area colour="amenity#ecba52"/>
|
|---|
| 1631 | </rule>
|
|---|
| 1632 |
|
|---|
| 1633 | <rule>
|
|---|
| 1634 | <condition k="amenity" v="biergarten"/>
|
|---|
| 1635 | <icon annotate="true" src="food/biergarten.png"/>
|
|---|
| 1636 | <area colour="amenity#ecba52"/>
|
|---|
| 1637 | </rule>
|
|---|
| 1638 |
|
|---|
| 1639 | <rule>
|
|---|
| 1640 | <condition k="amenity" v="nightclub"/>
|
|---|
| 1641 | <icon annotate="true" src="leisure/nightclub.png"/>
|
|---|
| 1642 | <area colour="amenity#ecba52"/>
|
|---|
| 1643 | </rule>
|
|---|
| 1644 |
|
|---|
| 1645 | <rule>
|
|---|
| 1646 | <condition k="amenity" v="stripclub"/>
|
|---|
| 1647 | <icon annotate="true" src="leisure/stripclub.png"/>
|
|---|
| 1648 | <area colour="amenity#ecba52"/>
|
|---|
| 1649 | </rule>
|
|---|
| 1650 |
|
|---|
| 1651 | <rule>
|
|---|
| 1652 | <condition k="amenity" v="brothel"/>
|
|---|
| 1653 | <icon annotate="true" src="leisure/stripclub.png"/>
|
|---|
| 1654 | <area colour="amenity#ecba52"/>
|
|---|
| 1655 | </rule>
|
|---|
| 1656 |
|
|---|
| 1657 | <rule>
|
|---|
| 1658 | <condition k="amenity" v="cafe"/>
|
|---|
| 1659 | <icon annotate="true" src="food/cafe.png"/>
|
|---|
| 1660 | <area colour="amenity#ecba52"/>
|
|---|
| 1661 | </rule>
|
|---|
| 1662 |
|
|---|
| 1663 | <rule>
|
|---|
| 1664 | <condition k="amenity" v="restaurant"/>
|
|---|
| 1665 | <icon annotate="true" src="food/restaurant.png"/>
|
|---|
| 1666 | <area colour="amenity#ecba52"/>
|
|---|
| 1667 | </rule>
|
|---|
| 1668 |
|
|---|
| 1669 | <rule>
|
|---|
| 1670 | <condition k="amenity" v="food_court"/>
|
|---|
| 1671 | <icon annotate="true" src="food/restaurant.png"/>
|
|---|
| 1672 | <area colour="amenity#ecba52"/>
|
|---|
| 1673 | </rule>
|
|---|
| 1674 |
|
|---|
| 1675 | <rule>
|
|---|
| 1676 | <condition k="amenity" v="fast_food"/>
|
|---|
| 1677 | <icon annotate="true" src="food/fastfood.png"/>
|
|---|
| 1678 | <area colour="amenity#ecba52"/>
|
|---|
| 1679 | </rule>
|
|---|
| 1680 |
|
|---|
| 1681 | <rule>
|
|---|
| 1682 | <condition k="amenity" v="bar"/>
|
|---|
| 1683 | <icon annotate="true" src="food/bar.png"/>
|
|---|
| 1684 | <area colour="amenity#ecba52"/>
|
|---|
| 1685 | </rule>
|
|---|
| 1686 |
|
|---|
| 1687 | <rule>
|
|---|
| 1688 | <condition k="amenity" v="ice_cream"/>
|
|---|
| 1689 | <icon annotate="true" src="food/icecream.png"/>
|
|---|
| 1690 | <area colour="amenity#ecba52"/>
|
|---|
| 1691 | </rule>
|
|---|
| 1692 |
|
|---|
| 1693 | <rule>
|
|---|
| 1694 | <condition k="amenity" v="motorcycle_parking"/>
|
|---|
| 1695 | <icon annotate="true" src="vehicle/parking/motorbike.png" priority="20000"/>
|
|---|
| 1696 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1697 | </rule>
|
|---|
| 1698 |
|
|---|
| 1699 | <rule>
|
|---|
| 1700 | <condition k="amenity" v="bicycle_parking"/>
|
|---|
| 1701 | <icon annotate="true" src="vehicle/parking/bicycle.png" priority="20000"/>
|
|---|
| 1702 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1703 | </rule>
|
|---|
| 1704 |
|
|---|
| 1705 | <rule>
|
|---|
| 1706 | <condition k="parking" v="park_and_ride"/>
|
|---|
| 1707 | <icon annotate="true" src="vehicle/parking/park_ride.png" priority="20000"/>
|
|---|
| 1708 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1709 | </rule>
|
|---|
| 1710 |
|
|---|
| 1711 | <rule>
|
|---|
| 1712 | <condition k="parking" v="multi-storey"/>
|
|---|
| 1713 | <icon annotate="true" src="vehicle/parking/multi-storey.png" priority="10000"/>
|
|---|
| 1714 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1715 | </rule>
|
|---|
| 1716 |
|
|---|
| 1717 | <rule>
|
|---|
| 1718 | <condition k="parking" v="underground"/>
|
|---|
| 1719 | <icon annotate="true" src="vehicle/parking/underground.png" priority="10000"/>
|
|---|
| 1720 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1721 | </rule>
|
|---|
| 1722 |
|
|---|
| 1723 | <rule>
|
|---|
| 1724 | <condition k="parking" v="surface"/>
|
|---|
| 1725 | <icon annotate="true" src="vehicle/parking.png"/>
|
|---|
| 1726 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1727 | </rule>
|
|---|
| 1728 |
|
|---|
| 1729 | <rule>
|
|---|
| 1730 | <condition k="amenity" v="parking"/>
|
|---|
| 1731 | <icon annotate="true" src="vehicle/parking.png"/>
|
|---|
| 1732 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1733 | </rule>
|
|---|
| 1734 |
|
|---|
| 1735 | <rule>
|
|---|
| 1736 | <condition k="amenity" v="parking_space"/>
|
|---|
| 1737 | <icon annotate="true" src="vehicle/parking.png" priority="-500" />
|
|---|
| 1738 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1739 | </rule>
|
|---|
| 1740 |
|
|---|
| 1741 | <rule>
|
|---|
| 1742 | <condition k="amenity" v="parking_space"/>
|
|---|
| 1743 | <condition k="wheelchair" b="yes"/>
|
|---|
| 1744 | <icon annotate="true" src="vehicle/parking/handicapped.png"/>
|
|---|
| 1745 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1746 | </rule>
|
|---|
| 1747 |
|
|---|
| 1748 | <rule>
|
|---|
| 1749 | <condition k="amenity" v="bicycle_rental"/>
|
|---|
| 1750 | <icon annotate="true" src="vehicle/rental/bicycle.png"/>
|
|---|
| 1751 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1752 | </rule>
|
|---|
| 1753 |
|
|---|
| 1754 | <rule>
|
|---|
| 1755 | <condition k="amenity" v="car_rental"/>
|
|---|
| 1756 | <icon annotate="true" src="vehicle/rental/car.png"/>
|
|---|
| 1757 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1758 | </rule>
|
|---|
| 1759 |
|
|---|
| 1760 | <rule>
|
|---|
| 1761 | <condition k="amenity" v="car_sharing"/>
|
|---|
| 1762 | <icon annotate="true" src="vehicle/car_sharing.png"/>
|
|---|
| 1763 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1764 | </rule>
|
|---|
| 1765 |
|
|---|
| 1766 | <rule>
|
|---|
| 1767 | <condition k="amenity" v="car_wash"/>
|
|---|
| 1768 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1769 | <icon annotate="true" src="vehicle/car_wash.png"/>
|
|---|
| 1770 | </rule>
|
|---|
| 1771 |
|
|---|
| 1772 | <rule>
|
|---|
| 1773 | <condition k="amenity" v="taxi"/>
|
|---|
| 1774 | <icon annotate="true" src="transport/taxi.png"/>
|
|---|
| 1775 | <area colour="amenity_traffic#f7efb7"/>
|
|---|
| 1776 | </rule>
|
|---|
| 1777 |
|
|---|
| 1778 | <rule>
|
|---|
| 1779 | <condition k="amenity" v="fuel"/>
|
|---|
| 1780 | <icon annotate="true" src="vehicle/fuel.png" priority="10000"/>
|
|---|
| 1781 | <area colour="amenity_traffic#f7efb7" priority="10000"/>
|
|---|
| 1782 | </rule>
|
|---|
| 1783 |
|
|---|
| 1784 | <rule>
|
|---|
| 1785 | <condition k="amenity" v="charging_station"/>
|
|---|
| 1786 | <icon annotate="true" src="accommodation/camping/hookup.png" priority="1000"/>
|
|---|
| 1787 | </rule>
|
|---|
| 1788 |
|
|---|
| 1789 | <rule>
|
|---|
| 1790 | <condition k="amenity" v="grit_bin"/>
|
|---|
| 1791 | <icon annotate="true" src="misc/grit_bin.png"/>
|
|---|
| 1792 | </rule>
|
|---|
| 1793 |
|
|---|
| 1794 | <rule>
|
|---|
| 1795 | <condition k="amenity" v="telephone"/>
|
|---|
| 1796 | <icon annotate="true" src="service/telephone.png"/>
|
|---|
| 1797 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1798 | </rule>
|
|---|
| 1799 |
|
|---|
| 1800 | <rule>
|
|---|
| 1801 | <condition k="amenity" v="clock"/>
|
|---|
| 1802 | <icon annotate="true" src="service/clock.png"/>
|
|---|
| 1803 | </rule>
|
|---|
| 1804 |
|
|---|
| 1805 | <!-- Rule to delete by end of 2013 if this deprecated tag has finally been replaced by emergency=phone below-->
|
|---|
| 1806 | <rule>
|
|---|
| 1807 | <condition k="amenity" v="emergency_phone"/>
|
|---|
| 1808 | <icon annotate="true" src="vehicle/emergency_phone.png"/>
|
|---|
| 1809 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1810 | </rule>
|
|---|
| 1811 |
|
|---|
| 1812 | <rule>
|
|---|
| 1813 | <condition k="emergency" v="phone"/>
|
|---|
| 1814 | <icon annotate="true" src="vehicle/emergency_phone.png"/>
|
|---|
| 1815 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1816 | </rule>
|
|---|
| 1817 |
|
|---|
| 1818 | <rule>
|
|---|
| 1819 | <condition k="amenity" v="toilets"/>
|
|---|
| 1820 | <icon annotate="true" src="service/toilets.png"/>
|
|---|
| 1821 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1822 | </rule>
|
|---|
| 1823 |
|
|---|
| 1824 | <rule>
|
|---|
| 1825 | <condition k="amenity" v="recycling"/>
|
|---|
| 1826 | <icon annotate="true" src="service/recycling.png"/>
|
|---|
| 1827 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1828 | </rule>
|
|---|
| 1829 |
|
|---|
| 1830 | <rule>
|
|---|
| 1831 | <condition k="amenity" v="waste_basket"/>
|
|---|
| 1832 | <icon annotate="true" src="service/recycling/trash-bin.png"/>
|
|---|
| 1833 | </rule>
|
|---|
| 1834 |
|
|---|
| 1835 | <rule>
|
|---|
| 1836 | <condition k="amenity" v="waste_disposal"/>
|
|---|
| 1837 | <icon annotate="true" src="service/recycling/waste_disposal.png"/>
|
|---|
| 1838 | </rule>
|
|---|
| 1839 |
|
|---|
| 1840 | <rule>
|
|---|
| 1841 | <condition k="amenity" v="public_building"/>
|
|---|
| 1842 | <icon annotate="true" src="service.png"/>
|
|---|
| 1843 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1844 | </rule>
|
|---|
| 1845 |
|
|---|
| 1846 | <rule>
|
|---|
| 1847 | <condition k="amenity" v="embassy"/>
|
|---|
| 1848 | <icon annotate="true" src="service/administration/embassy.png"/>
|
|---|
| 1849 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1850 | </rule>
|
|---|
| 1851 |
|
|---|
| 1852 | <rule>
|
|---|
| 1853 | <condition k="amenity" v="townhall"/>
|
|---|
| 1854 | <icon annotate="true" src="service.png"/>
|
|---|
| 1855 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1856 | </rule>
|
|---|
| 1857 |
|
|---|
| 1858 | <rule>
|
|---|
| 1859 | <condition k="amenity" v="community_centre"/>
|
|---|
| 1860 | <icon annotate="true" src="service/community_centre.png"/>
|
|---|
| 1861 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1862 | </rule>
|
|---|
| 1863 |
|
|---|
| 1864 | <rule>
|
|---|
| 1865 | <condition k="amenity" v="drinking_water"/>
|
|---|
| 1866 | <icon annotate="true" src="food/drinking_water.png"/>
|
|---|
| 1867 | <area colour="light_water#00005f"/>
|
|---|
| 1868 | </rule>
|
|---|
| 1869 |
|
|---|
| 1870 | <rule>
|
|---|
| 1871 | <condition k="amenity" v="fountain"/>
|
|---|
| 1872 | <icon annotate="true" src="misc/landmark/spring.png"/>
|
|---|
| 1873 | <area colour="light_water#00005f"/>
|
|---|
| 1874 | </rule>
|
|---|
| 1875 |
|
|---|
| 1876 | <rule>
|
|---|
| 1877 | <condition k="religion" v="bahai"/>
|
|---|
| 1878 | <icon annotate="true" src="religion/bahai.png"/>
|
|---|
| 1879 | </rule>
|
|---|
| 1880 |
|
|---|
| 1881 | <rule>
|
|---|
| 1882 | <condition k="religion" v="buddhist"/>
|
|---|
| 1883 | <icon annotate="true" src="religion/buddhism.png"/>
|
|---|
| 1884 | </rule>
|
|---|
| 1885 |
|
|---|
| 1886 | <rule>
|
|---|
| 1887 | <condition k="religion" v="christian"/>
|
|---|
| 1888 | <icon annotate="true" src="religion/church.png"/>
|
|---|
| 1889 | </rule>
|
|---|
| 1890 |
|
|---|
| 1891 | <rule>
|
|---|
| 1892 | <condition k="religion" v="hindu"/>
|
|---|
| 1893 | <icon annotate="true" src="religion/hinduism.png"/>
|
|---|
| 1894 | </rule>
|
|---|
| 1895 |
|
|---|
| 1896 | <rule>
|
|---|
| 1897 | <condition k="religion" v="jain"/>
|
|---|
| 1898 | <icon annotate="true" src="religion/jainism.png"/>
|
|---|
| 1899 | </rule>
|
|---|
| 1900 |
|
|---|
| 1901 | <rule>
|
|---|
| 1902 | <condition k="religion" v="jewish"/>
|
|---|
| 1903 | <icon annotate="true" src="religion/jewish.png"/>
|
|---|
| 1904 | </rule>
|
|---|
| 1905 |
|
|---|
| 1906 | <rule>
|
|---|
| 1907 | <condition k="religion" v="muslim"/>
|
|---|
| 1908 | <icon annotate="true" src="religion/muslim.png"/>
|
|---|
| 1909 | </rule>
|
|---|
| 1910 |
|
|---|
| 1911 | <rule>
|
|---|
| 1912 | <condition k="religion" v="sikh"/>
|
|---|
| 1913 | <icon annotate="true" src="religion/sikhism.png"/>
|
|---|
| 1914 | </rule>
|
|---|
| 1915 |
|
|---|
| 1916 | <rule>
|
|---|
| 1917 | <condition k="religion" v="shinto"/>
|
|---|
| 1918 | <icon annotate="true" src="religion/shinto.png"/>
|
|---|
| 1919 | </rule>
|
|---|
| 1920 |
|
|---|
| 1921 | <rule>
|
|---|
| 1922 | <condition k="religion" v="spiritualist"/>
|
|---|
| 1923 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1924 | </rule>
|
|---|
| 1925 |
|
|---|
| 1926 | <rule>
|
|---|
| 1927 | <condition k="religion" v="taoist"/>
|
|---|
| 1928 | <icon annotate="true" src="religion/taoism.png"/>
|
|---|
| 1929 | </rule>
|
|---|
| 1930 |
|
|---|
| 1931 | <rule>
|
|---|
| 1932 | <condition k="religion" v="unitarian"/>
|
|---|
| 1933 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1934 | </rule>
|
|---|
| 1935 |
|
|---|
| 1936 | <rule>
|
|---|
| 1937 | <condition k="religion" v="zoroastrian"/>
|
|---|
| 1938 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1939 | </rule>
|
|---|
| 1940 |
|
|---|
| 1941 | <rule>
|
|---|
| 1942 | <condition k="amenity" v="place_of_worship"/>
|
|---|
| 1943 | <icon annotate="true" src="religion.png" priority="-10000"/>
|
|---|
| 1944 | <area colour="amenity_light#f7efb7" priority="-10000"/>
|
|---|
| 1945 | </rule>
|
|---|
| 1946 |
|
|---|
| 1947 | <rule>
|
|---|
| 1948 | <condition k="amenity" v="grave_yard"/>
|
|---|
| 1949 | <icon annotate="true" src="rendering/landuse/cemetery.png"/>
|
|---|
| 1950 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1951 | </rule>
|
|---|
| 1952 |
|
|---|
| 1953 | <rule>
|
|---|
| 1954 | <condition k="amenity" v="crematorium"/>
|
|---|
| 1955 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1956 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 1957 | </rule>
|
|---|
| 1958 |
|
|---|
| 1959 | <rule>
|
|---|
| 1960 | <condition k="amenity" v="post_office"/>
|
|---|
| 1961 | <icon annotate="true" src="service/post_office.png"/>
|
|---|
| 1962 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1963 | </rule>
|
|---|
| 1964 |
|
|---|
| 1965 | <rule>
|
|---|
| 1966 | <condition k="amenity" v="post_box"/>
|
|---|
| 1967 | <icon annotate="true" src="service/post_box.png"/>
|
|---|
| 1968 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1969 | </rule>
|
|---|
| 1970 |
|
|---|
| 1971 | <rule>
|
|---|
| 1972 | <condition k="amenity" v="studio"/>
|
|---|
| 1973 | <icon annotate="true" src="service/studio.png"/>
|
|---|
| 1974 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1975 | </rule>
|
|---|
| 1976 |
|
|---|
| 1977 | <rule>
|
|---|
| 1978 | <condition k="amenity" v="school"/>
|
|---|
| 1979 | <icon annotate="true" src="education/school.png"/>
|
|---|
| 1980 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1981 | </rule>
|
|---|
| 1982 |
|
|---|
| 1983 | <rule>
|
|---|
| 1984 | <condition k="amenity" v="university"/>
|
|---|
| 1985 | <icon annotate="true" src="education/university.png"/>
|
|---|
| 1986 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1987 | </rule>
|
|---|
| 1988 |
|
|---|
| 1989 | <rule>
|
|---|
| 1990 | <condition k="amenity" v="college"/>
|
|---|
| 1991 | <icon annotate="true" src="education/college.png"/>
|
|---|
| 1992 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1993 | </rule>
|
|---|
| 1994 |
|
|---|
| 1995 | <rule>
|
|---|
| 1996 | <condition k="amenity" v="kindergarten"/>
|
|---|
| 1997 | <icon annotate="true" src="education/kindergarten.png"/>
|
|---|
| 1998 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 1999 | </rule>
|
|---|
| 2000 |
|
|---|
| 2001 | <rule>
|
|---|
| 2002 | <condition k="amenity" v="driving_school"/>
|
|---|
| 2003 | <icon annotate="true" src="education/driving_school.png"/>
|
|---|
| 2004 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2005 | </rule>
|
|---|
| 2006 |
|
|---|
| 2007 | <rule>
|
|---|
| 2008 | <condition k="amenity" v="pharmacy"/>
|
|---|
| 2009 | <area colour="health#eeeeee"/>
|
|---|
| 2010 | <icon annotate="true" src="health/pharmacy.png"/>
|
|---|
| 2011 | </rule>
|
|---|
| 2012 |
|
|---|
| 2013 | <rule>
|
|---|
| 2014 | <condition k="amenity" v="hospital"/>
|
|---|
| 2015 | <area colour="health#eeeeee"/>
|
|---|
| 2016 | <icon annotate="true" src="health/hospital.png"/>
|
|---|
| 2017 | </rule>
|
|---|
| 2018 |
|
|---|
| 2019 | <rule>
|
|---|
| 2020 | <condition k="amenity" v="clinic"/>
|
|---|
| 2021 | <area colour="health#eeeeee"/>
|
|---|
| 2022 | <icon annotate="true" src="health/hospital.png"/>
|
|---|
| 2023 | </rule>
|
|---|
| 2024 |
|
|---|
| 2025 | <rule>
|
|---|
| 2026 | <condition k="amenity" v="nursery"/>
|
|---|
| 2027 | <area colour="health#eeeeee"/>
|
|---|
| 2028 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 2029 | </rule>
|
|---|
| 2030 |
|
|---|
| 2031 | <rule>
|
|---|
| 2032 | <condition k="amenity" v="baby_hatch"/>
|
|---|
| 2033 | <icon annotate="true" src="health/baby_hatch.png"/>
|
|---|
| 2034 | <area colour="health#eeeeee"/>
|
|---|
| 2035 | </rule>
|
|---|
| 2036 |
|
|---|
| 2037 | <rule>
|
|---|
| 2038 | <condition k="amenity" v="doctors"/>
|
|---|
| 2039 | <area colour="health#eeeeee"/>
|
|---|
| 2040 | <icon annotate="true" src="health/doctor.png"/>
|
|---|
| 2041 | </rule>
|
|---|
| 2042 |
|
|---|
| 2043 | <rule>
|
|---|
| 2044 | <condition k="amenity" v="dentist"/>
|
|---|
| 2045 | <area colour="health#eeeeee"/>
|
|---|
| 2046 | <icon annotate="true" src="health/dentist.png"/>
|
|---|
| 2047 | </rule>
|
|---|
| 2048 |
|
|---|
| 2049 | <rule>
|
|---|
| 2050 | <condition k="amenity" v="veterinary"/>
|
|---|
| 2051 | <area colour="health#eeeeee"/>
|
|---|
| 2052 | <icon annotate="true" src="health/veterinary.png"/>
|
|---|
| 2053 | </rule>
|
|---|
| 2054 |
|
|---|
| 2055 | <rule>
|
|---|
| 2056 | <condition k="amenity" v="library"/>
|
|---|
| 2057 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2058 | <icon annotate="true" src="shop/rental/library.png"/>
|
|---|
| 2059 | </rule>
|
|---|
| 2060 |
|
|---|
| 2061 | <rule>
|
|---|
| 2062 | <condition k="amenity" v="police"/>
|
|---|
| 2063 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2064 | <icon annotate="true" src="service/police.png"/>
|
|---|
| 2065 | </rule>
|
|---|
| 2066 |
|
|---|
| 2067 | <rule>
|
|---|
| 2068 | <condition k="amenity" v="fire_station"/>
|
|---|
| 2069 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2070 | <icon annotate="true" src="service/firebrigade.png"/>
|
|---|
| 2071 | </rule>
|
|---|
| 2072 |
|
|---|
| 2073 | <rule>
|
|---|
| 2074 | <condition k="amenity" v="bus_station"/>
|
|---|
| 2075 | <icon annotate="true" src="transport/bus.png"/>
|
|---|
| 2076 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2077 | </rule>
|
|---|
| 2078 |
|
|---|
| 2079 | <rule>
|
|---|
| 2080 | <condition k="amenity" v="ferry_terminal"/>
|
|---|
| 2081 | <icon annotate="true" src="nautical/ferry.png"/>
|
|---|
| 2082 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2083 | </rule>
|
|---|
| 2084 |
|
|---|
| 2085 | <rule>
|
|---|
| 2086 | <condition k="amenity" v="theatre"/>
|
|---|
| 2087 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2088 | <icon annotate="true" src="leisure/theater.png"/>
|
|---|
| 2089 | </rule>
|
|---|
| 2090 |
|
|---|
| 2091 | <rule>
|
|---|
| 2092 | <condition k="amenity" v="cinema"/>
|
|---|
| 2093 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2094 | <icon annotate="true" src="leisure/cinema.png"/>
|
|---|
| 2095 | </rule>
|
|---|
| 2096 |
|
|---|
| 2097 | <rule>
|
|---|
| 2098 | <condition k="amenity" v="arts_centre"/>
|
|---|
| 2099 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2100 | <icon annotate="true" src="service/arts_centre.png"/>
|
|---|
| 2101 | </rule>
|
|---|
| 2102 |
|
|---|
| 2103 | <rule>
|
|---|
| 2104 | <condition k="amenity" v="courthouse"/>
|
|---|
| 2105 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2106 | <icon annotate="true" src="service/administration/court_of_law.png"/>
|
|---|
| 2107 | </rule>
|
|---|
| 2108 |
|
|---|
| 2109 | <rule>
|
|---|
| 2110 | <condition k="amenity" v="prison"/>
|
|---|
| 2111 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2112 | <icon annotate="true" src="service/administration/prison.png"/>
|
|---|
| 2113 | </rule>
|
|---|
| 2114 |
|
|---|
| 2115 | <rule>
|
|---|
| 2116 | <condition k="amenity" v="bank"/>
|
|---|
| 2117 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2118 | <icon annotate="true" src="money/bank.png"/>
|
|---|
| 2119 | </rule>
|
|---|
| 2120 |
|
|---|
| 2121 | <rule>
|
|---|
| 2122 | <condition k="amenity" v="bureau_de_change"/>
|
|---|
| 2123 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2124 | <icon annotate="true" src="money/exchange.png"/>
|
|---|
| 2125 | </rule>
|
|---|
| 2126 |
|
|---|
| 2127 | <rule>
|
|---|
| 2128 | <condition k="amenity" v="atm"/>
|
|---|
| 2129 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2130 | <icon annotate="true" src="money/atm.png"/>
|
|---|
| 2131 | </rule>
|
|---|
| 2132 |
|
|---|
| 2133 | <rule>
|
|---|
| 2134 | <condition k="amenity" v="bench"/>
|
|---|
| 2135 | <line colour="amenity_light#f7efb7"/>
|
|---|
| 2136 | <icon annotate="true" src="leisure/bench.png"/>
|
|---|
| 2137 | </rule>
|
|---|
| 2138 |
|
|---|
| 2139 | <rule>
|
|---|
| 2140 | <condition k="amenity" v="bbq"/>
|
|---|
| 2141 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2142 | <icon annotate="true" src="leisure/bbq.png"/>
|
|---|
| 2143 | </rule>
|
|---|
| 2144 |
|
|---|
| 2145 | <rule>
|
|---|
| 2146 | <condition k="emergency" v="fire_hydrant"/>
|
|---|
| 2147 | <icon annotate="true" src="service/fire_hydrant.png"/>
|
|---|
| 2148 | </rule>
|
|---|
| 2149 |
|
|---|
| 2150 | <rule>
|
|---|
| 2151 | <condition k="amenity" v="shelter"/>
|
|---|
| 2152 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2153 | <icon annotate="true" src="accommodation/shelter.png"/>
|
|---|
| 2154 | </rule>
|
|---|
| 2155 |
|
|---|
| 2156 | <rule>
|
|---|
| 2157 | <condition k="amenity" v="hunting_stand"/>
|
|---|
| 2158 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2159 | <icon annotate="true" src="hunting_stand.png"/>
|
|---|
| 2160 | </rule>
|
|---|
| 2161 |
|
|---|
| 2162 | <rule>
|
|---|
| 2163 | <condition k="amenity" v="marketplace"/>
|
|---|
| 2164 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2165 | <icon annotate="true" src="place/marketplace.png"/>
|
|---|
| 2166 | </rule>
|
|---|
| 2167 |
|
|---|
| 2168 | <rule>
|
|---|
| 2169 | <condition k="amenity" v="wlan"/>
|
|---|
| 2170 | <icon annotate="true" src="wlan.png"/>
|
|---|
| 2171 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2172 | </rule>
|
|---|
| 2173 |
|
|---|
| 2174 | <rule>
|
|---|
| 2175 | <condition k="vending" v="excrement_bags"/>
|
|---|
| 2176 | <icon annotate="true" src="service/excrement_bags.png"/>
|
|---|
| 2177 | </rule>
|
|---|
| 2178 |
|
|---|
| 2179 | <rule>
|
|---|
| 2180 | <condition k="amenity" v="vending_machine"/>
|
|---|
| 2181 | <icon src="transport/ticket-machine.png" priority="-10"/>
|
|---|
| 2182 | <area colour="amenity_light#f7efb7"/>
|
|---|
| 2183 | </rule>
|
|---|
| 2184 |
|
|---|
| 2185 | <!--office tags -->
|
|---|
| 2186 |
|
|---|
| 2187 | <rule>
|
|---|
| 2188 | <condition k="office" v="company"/>
|
|---|
| 2189 | <icon annotate="true" src="icons/office_blue.png"/>
|
|---|
| 2190 | <area colour="office#de5696"/>
|
|---|
| 2191 | </rule>
|
|---|
| 2192 |
|
|---|
| 2193 | <rule>
|
|---|
| 2194 | <condition k="office" v="government"/>
|
|---|
| 2195 | <icon annotate="true" src="icons/office_pink.png"/>
|
|---|
| 2196 | <area colour="office#de5696"/>
|
|---|
| 2197 | </rule>
|
|---|
| 2198 |
|
|---|
| 2199 | <!--shop tags -->
|
|---|
| 2200 |
|
|---|
| 2201 | <rule>
|
|---|
| 2202 | <condition k="shop" v="supermarket"/>
|
|---|
| 2203 | <icon annotate="true" src="shop/supermarket.png"/>
|
|---|
| 2204 | <area colour="shop#00005f"/>
|
|---|
| 2205 | </rule>
|
|---|
| 2206 |
|
|---|
| 2207 | <rule>
|
|---|
| 2208 | <condition k="shop" v="convenience"/>
|
|---|
| 2209 | <icon annotate="true" src="shop/convenience.png"/>
|
|---|
| 2210 | <area colour="shop#00005f"/>
|
|---|
| 2211 | </rule>
|
|---|
| 2212 |
|
|---|
| 2213 | <rule>
|
|---|
| 2214 | <condition k="shop" v="bakery"/>
|
|---|
| 2215 | <icon annotate="true" src="shop/groceries/bakery.png"/>
|
|---|
| 2216 | <area colour="shop#00005f"/>
|
|---|
| 2217 | </rule>
|
|---|
| 2218 |
|
|---|
| 2219 | <rule>
|
|---|
| 2220 | <condition k="shop" v="butcher"/>
|
|---|
| 2221 | <icon annotate="true" src="shop/groceries/butcher.png"/>
|
|---|
| 2222 | <area colour="shop#00005f"/>
|
|---|
| 2223 | </rule>
|
|---|
| 2224 |
|
|---|
| 2225 | <rule>
|
|---|
| 2226 | <condition k="shop" v="bicycle"/>
|
|---|
| 2227 | <icon annotate="true" src="sport/bicycle.png"/>
|
|---|
| 2228 | <area colour="shop#00005f"/>
|
|---|
| 2229 | </rule>
|
|---|
| 2230 |
|
|---|
| 2231 | <rule>
|
|---|
| 2232 | <condition k="shop" v="doityourself"/>
|
|---|
| 2233 | <icon annotate="true" src="shop/diy_store.png"/>
|
|---|
| 2234 | <area colour="shop#00005f"/>
|
|---|
| 2235 | </rule>
|
|---|
| 2236 |
|
|---|
| 2237 | <rule>
|
|---|
| 2238 | <condition k="shop" v="dry_cleaning"/>
|
|---|
| 2239 | <icon annotate="true" src="shop/laundry.png"/>
|
|---|
| 2240 | <area colour="shop#00005f"/>
|
|---|
| 2241 | </rule>
|
|---|
| 2242 |
|
|---|
| 2243 | <rule>
|
|---|
| 2244 | <condition k="shop" v="laundry"/>
|
|---|
| 2245 | <icon annotate="true" src="shop/laundry.png"/>
|
|---|
| 2246 | <area colour="shop#00005f"/>
|
|---|
| 2247 | </rule>
|
|---|
| 2248 |
|
|---|
| 2249 | <rule>
|
|---|
| 2250 | <condition k="shop" v="outdoor"/>
|
|---|
| 2251 | <icon annotate="true" src="shop/sports/outdoor.png"/>
|
|---|
| 2252 | <area colour="shop#00005f"/>
|
|---|
| 2253 | </rule>
|
|---|
| 2254 |
|
|---|
| 2255 | <rule>
|
|---|
| 2256 | <condition k="shop" v="kiosk"/>
|
|---|
| 2257 | <icon annotate="true" src="shop/kiosk.png"/>
|
|---|
| 2258 | <area colour="shop#00005f"/>
|
|---|
| 2259 | </rule>
|
|---|
| 2260 |
|
|---|
| 2261 | <rule>
|
|---|
| 2262 | <condition k="shop" v="alcohol"/>
|
|---|
| 2263 | <icon annotate="true" src="shop/beverages.png"/>
|
|---|
| 2264 | <area colour="shop#00005f"/>
|
|---|
| 2265 | </rule>
|
|---|
| 2266 |
|
|---|
| 2267 | <rule>
|
|---|
| 2268 | <condition k="shop" v="beverages"/>
|
|---|
| 2269 | <icon annotate="true" src="shop/beverages.png"/>
|
|---|
| 2270 | <area colour="shop#00005f"/>
|
|---|
| 2271 | </rule>
|
|---|
| 2272 |
|
|---|
| 2273 | <rule>
|
|---|
| 2274 | <condition k="shop" v="books"/>
|
|---|
| 2275 | <icon annotate="true" src="shop/rental/library.png"/>
|
|---|
| 2276 | <area colour="shop#00005f"/>
|
|---|
| 2277 | </rule>
|
|---|
| 2278 |
|
|---|
| 2279 | <rule>
|
|---|
| 2280 | <condition k="shop" v="boutique"/>
|
|---|
| 2281 | <icon annotate="true" src="shop/boutique.png"/>
|
|---|
| 2282 | <area colour="shop#00005f"/>
|
|---|
| 2283 | </rule>
|
|---|
| 2284 |
|
|---|
| 2285 | <rule>
|
|---|
| 2286 | <condition k="shop" v="car"/>
|
|---|
| 2287 | <icon annotate="true" src="transport/car.png"/>
|
|---|
| 2288 | <area colour="shop#00005f"/>
|
|---|
| 2289 | </rule>
|
|---|
| 2290 |
|
|---|
| 2291 | <rule>
|
|---|
| 2292 | <condition k="shop" v="car_dealer"/>
|
|---|
| 2293 | <icon annotate="true" src="transport/car.png"/>
|
|---|
| 2294 | <area colour="shop#00005f"/>
|
|---|
| 2295 | </rule>
|
|---|
| 2296 |
|
|---|
| 2297 | <rule>
|
|---|
| 2298 | <condition k="shop" v="car_repair"/>
|
|---|
| 2299 | <icon annotate="true" src="vehicle/repair_shop.png"/>
|
|---|
| 2300 | <area colour="shop#00005f"/>
|
|---|
| 2301 | </rule>
|
|---|
| 2302 |
|
|---|
| 2303 | <rule>
|
|---|
| 2304 | <condition k="shop" v="tyres"/>
|
|---|
| 2305 | <icon annotate="true" src="vehicle/tyres.png"/>
|
|---|
| 2306 | <area colour="shop#00005f"/>
|
|---|
| 2307 | </rule>
|
|---|
| 2308 |
|
|---|
| 2309 | <rule>
|
|---|
| 2310 | <condition k="shop" v="chemist"/>
|
|---|
| 2311 | <icon annotate="true" src="shop/chemist.png"/>
|
|---|
| 2312 | <area colour="shop#00005f"/>
|
|---|
| 2313 | </rule>
|
|---|
| 2314 |
|
|---|
| 2315 | <rule>
|
|---|
| 2316 | <condition k="shop" v="clothes"/>
|
|---|
| 2317 | <icon annotate="true" src="shop/clothes.png"/>
|
|---|
| 2318 | <area colour="shop#00005f"/>
|
|---|
| 2319 | </rule>
|
|---|
| 2320 |
|
|---|
| 2321 | <rule>
|
|---|
| 2322 | <condition k="shop" v="computer"/>
|
|---|
| 2323 | <icon annotate="true" src="shop/computer.png"/>
|
|---|
| 2324 | <area colour="shop#00005f"/>
|
|---|
| 2325 | </rule>
|
|---|
| 2326 |
|
|---|
| 2327 | <rule>
|
|---|
| 2328 | <condition k="shop" v="confectionery"/>
|
|---|
| 2329 | <icon annotate="true" src="shop/groceries/confectionery.png"/>
|
|---|
| 2330 | <area colour="shop#00005f"/>
|
|---|
| 2331 | </rule>
|
|---|
| 2332 |
|
|---|
| 2333 | <rule>
|
|---|
| 2334 | <condition k="shop" v="copyshop"/>
|
|---|
| 2335 | <icon annotate="true" src="shop/copyshop.png"/>
|
|---|
| 2336 | <area colour="shop#00005f"/>
|
|---|
| 2337 | </rule>
|
|---|
| 2338 |
|
|---|
| 2339 | <rule>
|
|---|
| 2340 | <condition k="shop" v="curtain"/>
|
|---|
| 2341 | <icon annotate="true" src="shop/curtain.png"/>
|
|---|
| 2342 | <area colour="shop#00005f"/>
|
|---|
| 2343 | </rule>
|
|---|
| 2344 |
|
|---|
| 2345 | <rule>
|
|---|
| 2346 | <condition k="shop" v="cycle_repair"/>
|
|---|
| 2347 | <icon annotate="true" src="sport/bicycle.png"/>
|
|---|
| 2348 | <area colour="shop#00005f"/>
|
|---|
| 2349 | </rule>
|
|---|
| 2350 |
|
|---|
| 2351 | <rule>
|
|---|
| 2352 | <condition k="shop" v="department_store"/>
|
|---|
| 2353 | <icon annotate="true" src="shop/mall.png"/>
|
|---|
| 2354 | <area colour="shop#00005f"/>
|
|---|
| 2355 | </rule>
|
|---|
| 2356 |
|
|---|
| 2357 | <rule>
|
|---|
| 2358 | <condition k="shop" v="deli"/>
|
|---|
| 2359 | <icon annotate="true" src="shop/groceries/deli.png"/>
|
|---|
| 2360 | <area colour="shop#00005f"/>
|
|---|
| 2361 | </rule>
|
|---|
| 2362 |
|
|---|
| 2363 | <rule>
|
|---|
| 2364 | <condition k="shop" v="electronics"/>
|
|---|
| 2365 | <icon annotate="true" src="shop/electronics.png"/>
|
|---|
| 2366 | <area colour="shop#00005f"/>
|
|---|
| 2367 | </rule>
|
|---|
| 2368 |
|
|---|
| 2369 | <rule>
|
|---|
| 2370 | <condition k="shop" v="erotic"/>
|
|---|
| 2371 | <icon annotate="true" src="shop/erotic.png"/>
|
|---|
| 2372 | <area colour="shop#00005f"/>
|
|---|
| 2373 | </rule>
|
|---|
| 2374 |
|
|---|
| 2375 | <rule>
|
|---|
| 2376 | <condition k="shop" v="furniture"/>
|
|---|
| 2377 | <icon annotate="true" src="shop/furniture.png"/>
|
|---|
| 2378 | <area colour="shop#00005f"/>
|
|---|
| 2379 | </rule>
|
|---|
| 2380 |
|
|---|
| 2381 | <rule>
|
|---|
| 2382 | <condition k="shop" v="fabric"/>
|
|---|
| 2383 | <icon annotate="true" src="shop/fabric.png"/>
|
|---|
| 2384 | <area colour="shop#00005f"/>
|
|---|
| 2385 | </rule>
|
|---|
| 2386 |
|
|---|
| 2387 | <rule>
|
|---|
| 2388 | <condition k="shop" v="florist"/>
|
|---|
| 2389 | <icon annotate="true" src="shop/florist.png"/>
|
|---|
| 2390 | <area colour="shop#00005f"/>
|
|---|
| 2391 | </rule>
|
|---|
| 2392 |
|
|---|
| 2393 | <rule>
|
|---|
| 2394 | <condition k="shop" v="frame"/>
|
|---|
| 2395 | <icon annotate="true" src="shop/frame.png"/>
|
|---|
| 2396 | <area colour="shop#00005f"/>
|
|---|
| 2397 | </rule>
|
|---|
| 2398 |
|
|---|
| 2399 | <rule>
|
|---|
| 2400 | <condition k="shop" v="greengrocer"/>
|
|---|
| 2401 | <icon annotate="true" src="shop/groceries/greengrocer.png"/>
|
|---|
| 2402 | <area colour="shop#00005f"/>
|
|---|
| 2403 | </rule>
|
|---|
| 2404 |
|
|---|
| 2405 | <rule>
|
|---|
| 2406 | <!-- superseeded by greengrocer -->
|
|---|
| 2407 | <condition k="shop" v="groceries"/>
|
|---|
| 2408 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 2409 | <area colour="deprecated#ff0000"/>
|
|---|
| 2410 | </rule>
|
|---|
| 2411 |
|
|---|
| 2412 | <rule>
|
|---|
| 2413 | <condition k="shop" v="garden_centre"/>
|
|---|
| 2414 | <icon annotate="true" src="shop/garden_centre.png"/>
|
|---|
| 2415 | <area colour="shop#00005f"/>
|
|---|
| 2416 | </rule>
|
|---|
| 2417 |
|
|---|
| 2418 | <rule>
|
|---|
| 2419 | <condition k="shop" v="hairdresser"/>
|
|---|
| 2420 | <icon annotate="true" src="shop/hairdresser.png"/>
|
|---|
| 2421 | <area colour="shop#00005f"/>
|
|---|
| 2422 | </rule>
|
|---|
| 2423 |
|
|---|
| 2424 | <rule>
|
|---|
| 2425 | <condition k="shop" v="hardware"/>
|
|---|
| 2426 | <icon annotate="true" src="shop/hardware.png"/>
|
|---|
| 2427 | <area colour="shop#00005f"/>
|
|---|
| 2428 | </rule>
|
|---|
| 2429 |
|
|---|
| 2430 | <rule>
|
|---|
| 2431 | <condition k="shop" v="hearing_aids"/>
|
|---|
| 2432 | <icon annotate="true" src="shop/hearing_aids.png"/>
|
|---|
| 2433 | <area colour="shop#00005f"/>
|
|---|
| 2434 | </rule>
|
|---|
| 2435 |
|
|---|
| 2436 | <rule>
|
|---|
| 2437 | <condition k="shop" v="hifi"/>
|
|---|
| 2438 | <icon annotate="true" src="shop/hifi.png"/>
|
|---|
| 2439 | <area colour="shop#00005f"/>
|
|---|
| 2440 | </rule>
|
|---|
| 2441 |
|
|---|
| 2442 | <rule>
|
|---|
| 2443 | <condition k="shop" v="jewelry"/>
|
|---|
| 2444 | <icon annotate="true" src="shop/jewelry.png"/>
|
|---|
| 2445 | <area colour="shop#00005f"/>
|
|---|
| 2446 | </rule>
|
|---|
| 2447 |
|
|---|
| 2448 | <rule>
|
|---|
| 2449 | <condition k="shop" v="kitchen"/>
|
|---|
| 2450 | <icon annotate="true" src="shop/kitchen.png"/>
|
|---|
| 2451 | <area colour="shop#00005f"/>
|
|---|
| 2452 | </rule>
|
|---|
| 2453 |
|
|---|
| 2454 | <rule>
|
|---|
| 2455 | <condition k="shop" v="mall"/>
|
|---|
| 2456 | <icon annotate="true" src="shop/mall.png"/>
|
|---|
| 2457 | <area colour="shop#00005f"/>
|
|---|
| 2458 | </rule>
|
|---|
| 2459 |
|
|---|
| 2460 | <rule>
|
|---|
| 2461 | <condition k="shop" v="mobile_phone"/>
|
|---|
| 2462 | <icon annotate="true" src="shop/mobile_phone.png"/>
|
|---|
| 2463 | <area colour="shop#00005f"/>
|
|---|
| 2464 | </rule>
|
|---|
| 2465 |
|
|---|
| 2466 | <rule>
|
|---|
| 2467 | <condition k="shop" v="motorcycle"/>
|
|---|
| 2468 | <icon annotate="true" src="vehicle/motorbike.png"/>
|
|---|
| 2469 | <area colour="shop#00005f"/>
|
|---|
| 2470 | </rule>
|
|---|
| 2471 |
|
|---|
| 2472 | <rule>
|
|---|
| 2473 | <condition k="shop" v="musical_instrument"/>
|
|---|
| 2474 | <icon annotate="true" src="shop/musical_instrument.png"/>
|
|---|
| 2475 | <area colour="shop#00005f"/>
|
|---|
| 2476 | </rule>
|
|---|
| 2477 |
|
|---|
| 2478 | <rule>
|
|---|
| 2479 | <condition k="shop" v="newsagent"/>
|
|---|
| 2480 | <icon annotate="true" src="shop/kiosk.png"/>
|
|---|
| 2481 | <area colour="shop#00005f"/>
|
|---|
| 2482 | </rule>
|
|---|
| 2483 |
|
|---|
| 2484 | <rule>
|
|---|
| 2485 | <condition k="shop" v="optician"/>
|
|---|
| 2486 | <icon annotate="true" src="shop/optician.png"/>
|
|---|
| 2487 | <area colour="shop#00005f"/>
|
|---|
| 2488 | </rule>
|
|---|
| 2489 |
|
|---|
| 2490 | <rule>
|
|---|
| 2491 | <condition k="shop" v="paint"/>
|
|---|
| 2492 | <icon annotate="true" src="shop/paint.png"/>
|
|---|
| 2493 | <area colour="shop#00005f"/>
|
|---|
| 2494 | </rule>
|
|---|
| 2495 |
|
|---|
| 2496 | <rule>
|
|---|
| 2497 | <condition k="shop" v="seafood"/>
|
|---|
| 2498 | <icon annotate="true" src="shop/groceries/seafood.png"/>
|
|---|
| 2499 | <area colour="shop#00005f"/>
|
|---|
| 2500 | </rule>
|
|---|
| 2501 |
|
|---|
| 2502 | <rule>
|
|---|
| 2503 | <condition k="shop" v="shoes"/>
|
|---|
| 2504 | <icon annotate="true" src="shop/shoes.png"/>
|
|---|
| 2505 | <area colour="shop#00005f"/>
|
|---|
| 2506 | </rule>
|
|---|
| 2507 |
|
|---|
| 2508 | <rule>
|
|---|
| 2509 | <condition k="shop" v="sports"/>
|
|---|
| 2510 | <icon annotate="true" src="sport/multi.png"/>
|
|---|
| 2511 | <area colour="shop#00005f"/>
|
|---|
| 2512 | </rule>
|
|---|
| 2513 |
|
|---|
| 2514 | <rule>
|
|---|
| 2515 | <condition k="shop" v="stationery"/>
|
|---|
| 2516 | <icon annotate="true" src="shop/stationery.png"/>
|
|---|
| 2517 | <area colour="shop#00005f"/>
|
|---|
| 2518 | </rule>
|
|---|
| 2519 |
|
|---|
| 2520 | <rule>
|
|---|
| 2521 | <condition k="shop" v="tailor"/>
|
|---|
| 2522 | <icon annotate="true" src="shop/tailor.png"/>
|
|---|
| 2523 | <area colour="shop#00005f"/>
|
|---|
| 2524 | </rule>
|
|---|
| 2525 |
|
|---|
| 2526 | <rule>
|
|---|
| 2527 | <condition k="shop" v="travel_agency"/>
|
|---|
| 2528 | <icon annotate="true" src="place/island.png"/>
|
|---|
| 2529 | <area colour="shop#00005f"/>
|
|---|
| 2530 | </rule>
|
|---|
| 2531 |
|
|---|
| 2532 | <rule>
|
|---|
| 2533 | <condition k="shop" v="toys"/>
|
|---|
| 2534 | <icon annotate="true" src="shop/toys.png"/>
|
|---|
| 2535 | <area colour="shop#00005f"/>
|
|---|
| 2536 | </rule>
|
|---|
| 2537 |
|
|---|
| 2538 | <rule>
|
|---|
| 2539 | <condition k="shop" v="vacuum_cleaner"/>
|
|---|
| 2540 | <icon annotate="true" src="shop/vacuum_cleaner.png"/>
|
|---|
| 2541 | <area colour="shop#00005f"/>
|
|---|
| 2542 | </rule>
|
|---|
| 2543 |
|
|---|
| 2544 | <rule>
|
|---|
| 2545 | <condition k="shop" v="variety_store"/>
|
|---|
| 2546 | <icon annotate="true" src="shop/variety_store.png"/>
|
|---|
| 2547 | <area colour="shop#00005f"/>
|
|---|
| 2548 | </rule>
|
|---|
| 2549 |
|
|---|
| 2550 | <rule>
|
|---|
| 2551 | <condition k="shop" v="video"/>
|
|---|
| 2552 | <icon annotate="true" src="shop/video.png"/>
|
|---|
| 2553 | <area colour="shop#00005f"/>
|
|---|
| 2554 | </rule>
|
|---|
| 2555 |
|
|---|
| 2556 | <!-- duplicate of shopping_centre? -->
|
|---|
| 2557 | <rule>
|
|---|
| 2558 | <condition k="shop" v="shopping_centre"/>
|
|---|
| 2559 | <icon annotate="true" src="shop/mall.png"/>
|
|---|
| 2560 | <area colour="shop#00005f"/>
|
|---|
| 2561 | </rule>
|
|---|
| 2562 |
|
|---|
| 2563 | <!--tourism tags -->
|
|---|
| 2564 |
|
|---|
| 2565 | <rule>
|
|---|
| 2566 | <condition k="tourism" v="hotel"/>
|
|---|
| 2567 | <icon annotate="true" src="accommodation.png"/>
|
|---|
| 2568 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2569 | </rule>
|
|---|
| 2570 |
|
|---|
| 2571 | <rule>
|
|---|
| 2572 | <condition k="tourism" v="motel"/>
|
|---|
| 2573 | <icon annotate="true" src="accommodation/motel.png"/>
|
|---|
| 2574 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2575 | </rule>
|
|---|
| 2576 |
|
|---|
| 2577 | <rule>
|
|---|
| 2578 | <condition k="tourism" v="guest_house"/>
|
|---|
| 2579 | <icon annotate="true" src="accommodation/guest_house.png"/>
|
|---|
| 2580 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2581 | </rule>
|
|---|
| 2582 |
|
|---|
| 2583 | <rule>
|
|---|
| 2584 | <condition k="tourism" v="hostel"/>
|
|---|
| 2585 | <icon annotate="true" src="accommodation/hostel.png"/>
|
|---|
| 2586 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2587 | </rule>
|
|---|
| 2588 |
|
|---|
| 2589 | <rule>
|
|---|
| 2590 | <condition k="tourism" v="chalet"/>
|
|---|
| 2591 | <icon annotate="true" src="accommodation/chalet.png"/>
|
|---|
| 2592 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2593 | </rule>
|
|---|
| 2594 |
|
|---|
| 2595 | <rule>
|
|---|
| 2596 | <condition k="tourism" v="alpine_hut"/>
|
|---|
| 2597 | <icon annotate="true" src="accommodation/alpine_hut.png"/>
|
|---|
| 2598 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2599 | </rule>
|
|---|
| 2600 |
|
|---|
| 2601 | <rule>
|
|---|
| 2602 | <condition k="tourism" v="camp_site"/>
|
|---|
| 2603 | <icon annotate="true" src="accommodation/camping.png"/>
|
|---|
| 2604 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2605 | </rule>
|
|---|
| 2606 |
|
|---|
| 2607 | <rule>
|
|---|
| 2608 | <condition k="tourism" v="caravan_site"/>
|
|---|
| 2609 | <icon annotate="true" src="accommodation/camping/caravan.png"/>
|
|---|
| 2610 | <area colour="hotel#e1a0a2"/>
|
|---|
| 2611 | </rule>
|
|---|
| 2612 |
|
|---|
| 2613 | <rule>
|
|---|
| 2614 | <condition k="tourism" v="picnic_site"/>
|
|---|
| 2615 | <icon annotate="true" src="leisure/picnic.png"/>
|
|---|
| 2616 | <area colour="tourism#e180a2"/>
|
|---|
| 2617 | </rule>
|
|---|
| 2618 |
|
|---|
| 2619 | <rule>
|
|---|
| 2620 | <condition k="tourism" v="viewpoint"/>
|
|---|
| 2621 | <icon annotate="true" src="sightseeing/viewpoint.png"/>
|
|---|
| 2622 | <area colour="tourism#e180a2"/>
|
|---|
| 2623 | </rule>
|
|---|
| 2624 |
|
|---|
| 2625 | <rule>
|
|---|
| 2626 | <condition k="tourism" v="theme_park"/>
|
|---|
| 2627 | <icon annotate="true" src="leisure/theme_park.png"/>
|
|---|
| 2628 | <area colour="tourism#e180a2"/>
|
|---|
| 2629 | </rule>
|
|---|
| 2630 |
|
|---|
| 2631 | <rule>
|
|---|
| 2632 | <condition k="tourism" v="attraction"/>
|
|---|
| 2633 | <icon annotate="true" src="sightseeing.png"/>
|
|---|
| 2634 | <area colour="tourism#e180a2"/>
|
|---|
| 2635 | </rule>
|
|---|
| 2636 |
|
|---|
| 2637 | <rule>
|
|---|
| 2638 | <condition k="tourism" v="zoo"/>
|
|---|
| 2639 | <icon annotate="true" src="leisure/zoo.png"/>
|
|---|
| 2640 | <area colour="tourism#e180a2"/>
|
|---|
| 2641 | </rule>
|
|---|
| 2642 |
|
|---|
| 2643 | <rule>
|
|---|
| 2644 | <condition k="tourism" v="artwork"/>
|
|---|
| 2645 | <icon annotate="true" src="service/arts_centre.png"/>
|
|---|
| 2646 | <line width="2" colour="tourism#e180a2"/>
|
|---|
| 2647 | <area colour="tourism#e180a2"/>
|
|---|
| 2648 | </rule>
|
|---|
| 2649 |
|
|---|
| 2650 | <rule>
|
|---|
| 2651 | <condition k="tourism" v="museum"/>
|
|---|
| 2652 | <icon annotate="true" src="sightseeing/museum.png"/>
|
|---|
| 2653 | <area colour="tourism#e180a2"/>
|
|---|
| 2654 | </rule>
|
|---|
| 2655 |
|
|---|
| 2656 | <!-- information tags -->
|
|---|
| 2657 | <rule>
|
|---|
| 2658 | <condition k="information" v="guidepost"/>
|
|---|
| 2659 | <icon annotate="true" src="misc/information/guidepost.png" priority="10"/>
|
|---|
| 2660 | </rule>
|
|---|
| 2661 |
|
|---|
| 2662 | <rule>
|
|---|
| 2663 | <condition k="information" v="office"/>
|
|---|
| 2664 | <icon annotate="true" src="misc/information/informationoffice.png" priority="10"/>
|
|---|
| 2665 | <area colour="tourism#e180a2"/>
|
|---|
| 2666 | </rule>
|
|---|
| 2667 |
|
|---|
| 2668 | <rule>
|
|---|
| 2669 | <condition k="information" v="map"/>
|
|---|
| 2670 | <icon annotate="true" src="misc/information/map.png" priority="10"/>
|
|---|
| 2671 | </rule>
|
|---|
| 2672 |
|
|---|
| 2673 | <rule>
|
|---|
| 2674 | <condition k="information" v="board"/>
|
|---|
| 2675 | <icon annotate="true" src="misc/information/board.png" priority="10"/>
|
|---|
| 2676 | </rule>
|
|---|
| 2677 |
|
|---|
| 2678 | <rule>
|
|---|
| 2679 | <condition k="tourism" v="information"/>
|
|---|
| 2680 | <icon annotate="true" src="misc/information.png"/>
|
|---|
| 2681 | <area colour="tourism#e180a2"/>
|
|---|
| 2682 | </rule>
|
|---|
| 2683 |
|
|---|
| 2684 | <!--historic tags -->
|
|---|
| 2685 |
|
|---|
| 2686 | <rule>
|
|---|
| 2687 | <condition k="historic" v="castle"/>
|
|---|
| 2688 | <icon annotate="true" src="sightseeing/castle.png"/>
|
|---|
| 2689 | <area colour="historic#663300"/>
|
|---|
| 2690 | </rule>
|
|---|
| 2691 |
|
|---|
| 2692 | <rule>
|
|---|
| 2693 | <condition k="historic" v="monument"/>
|
|---|
| 2694 | <icon annotate="true" src="sightseeing/monument.png"/>
|
|---|
| 2695 | <area colour="historic#663300"/>
|
|---|
| 2696 | </rule>
|
|---|
| 2697 |
|
|---|
| 2698 | <rule>
|
|---|
| 2699 | <condition k="historic" v="memorial"/>
|
|---|
| 2700 | <icon annotate="true" src="sightseeing/memorial.png"/>
|
|---|
| 2701 | <area colour="historic#663300"/>
|
|---|
| 2702 | </rule>
|
|---|
| 2703 |
|
|---|
| 2704 | <rule>
|
|---|
| 2705 | <condition k="historic" v="archaeological_site"/>
|
|---|
| 2706 | <icon annotate="true" src="sightseeing/archaeological.png"/>
|
|---|
| 2707 | <area colour="historic#663300"/>
|
|---|
| 2708 | </rule>
|
|---|
| 2709 |
|
|---|
| 2710 | <rule>
|
|---|
| 2711 | <condition k="historic" v="ruins"/>
|
|---|
| 2712 | <icon annotate="true" src="sightseeing/ruins.png"/>
|
|---|
| 2713 | <area colour="historic#663300"/>
|
|---|
| 2714 | </rule>
|
|---|
| 2715 |
|
|---|
| 2716 | <rule>
|
|---|
| 2717 | <condition k="historic" v="battlefield"/>
|
|---|
| 2718 | <icon annotate="true" src="sightseeing/battlefield.png"/>
|
|---|
| 2719 | <area colour="historic#663300"/>
|
|---|
| 2720 | </rule>
|
|---|
| 2721 |
|
|---|
| 2722 | <rule>
|
|---|
| 2723 | <condition k="geological" v="palaeontological_site"/>
|
|---|
| 2724 | <icon annotate="true" src="historic/palaeontological_site.png"/>
|
|---|
| 2725 | <area colour="historic#663300"/>
|
|---|
| 2726 | </rule>
|
|---|
| 2727 |
|
|---|
| 2728 | <rule>
|
|---|
| 2729 | <condition k="historic" v="wayside_cross"/>
|
|---|
| 2730 | <icon annotate="true" src="religion/wayside_cross.png"/>
|
|---|
| 2731 | <area colour="historic#663300"/>
|
|---|
| 2732 | </rule>
|
|---|
| 2733 |
|
|---|
| 2734 | <rule>
|
|---|
| 2735 | <condition k="historic" v="wayside_shrine"/>
|
|---|
| 2736 | <icon annotate="true" src="religion/wayside_shrine.png"/>
|
|---|
| 2737 | <area colour="historic#663300"/>
|
|---|
| 2738 | </rule>
|
|---|
| 2739 |
|
|---|
| 2740 | <rule>
|
|---|
| 2741 | <condition k="historic" v="boundary_stone"/>
|
|---|
| 2742 | <icon annotate="true" src="historic/boundary_stone.png"/>
|
|---|
| 2743 | <area colour="historic#663300"/>
|
|---|
| 2744 | </rule>
|
|---|
| 2745 |
|
|---|
| 2746 | <!--landuse tags -->
|
|---|
| 2747 |
|
|---|
| 2748 | <rule>
|
|---|
| 2749 | <condition k="landuse" v="farm"/>
|
|---|
| 2750 | <area colour="green#b1e0c2"/>
|
|---|
| 2751 | <icon annotate="true" src="misc/landmark/farm.png"/>
|
|---|
| 2752 | </rule>
|
|---|
| 2753 |
|
|---|
| 2754 | <rule>
|
|---|
| 2755 | <condition k="landuse" v="farmland"/>
|
|---|
| 2756 | <area colour="green#b1e0c2"/>
|
|---|
| 2757 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 2758 | </rule>
|
|---|
| 2759 |
|
|---|
| 2760 | <rule>
|
|---|
| 2761 | <condition k="landuse" v="meadow"/>
|
|---|
| 2762 | <area colour="green#b1e0c2"/>
|
|---|
| 2763 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 2764 | </rule>
|
|---|
| 2765 |
|
|---|
| 2766 | <rule>
|
|---|
| 2767 | <condition k="landuse" v="vineyard"/>
|
|---|
| 2768 | <area colour="green#b1e0c2"/>
|
|---|
| 2769 | <icon annotate="true" src="shop/groceries/fruits.png"/>
|
|---|
| 2770 | </rule>
|
|---|
| 2771 |
|
|---|
| 2772 | <rule>
|
|---|
| 2773 | <condition k="landuse" v="orchard"/>
|
|---|
| 2774 | <area colour="green#b1e0c2"/>
|
|---|
| 2775 | </rule>
|
|---|
| 2776 |
|
|---|
| 2777 | <rule>
|
|---|
| 2778 | <condition k="landuse" v="quarry"/>
|
|---|
| 2779 | <area colour="quarry#888888"/>
|
|---|
| 2780 | <icon src="misc/landmark/mine.png"/>
|
|---|
| 2781 | </rule>
|
|---|
| 2782 |
|
|---|
| 2783 | <rule>
|
|---|
| 2784 | <condition k="landuse" v="landfill"/>
|
|---|
| 2785 | <area colour="landfill#663300"/>
|
|---|
| 2786 | <icon src="misc/no_icon.png"/>
|
|---|
| 2787 | </rule>
|
|---|
| 2788 |
|
|---|
| 2789 | <rule>
|
|---|
| 2790 | <condition k="landuse" v="basin"/>
|
|---|
| 2791 | <area colour="basin#0000bf"/>
|
|---|
| 2792 | <icon src="misc/no_icon.png"/>
|
|---|
| 2793 | </rule>
|
|---|
| 2794 |
|
|---|
| 2795 | <rule>
|
|---|
| 2796 | <condition k="landuse" v="reservoir"/>
|
|---|
| 2797 | <area colour="basin#0000bf"/>
|
|---|
| 2798 | <icon src="misc/no_icon.png"/>
|
|---|
| 2799 | </rule>
|
|---|
| 2800 |
|
|---|
| 2801 | <rule>
|
|---|
| 2802 | <condition k="landuse" v="forest"/>
|
|---|
| 2803 | <area colour="forest#b1efc8"/>
|
|---|
| 2804 | <icon src="misc/landmark/trees.png"/>
|
|---|
| 2805 | </rule>
|
|---|
| 2806 |
|
|---|
| 2807 | <rule>
|
|---|
| 2808 | <condition k="landuse" v="allotments"/>
|
|---|
| 2809 | <area colour="green#b1e0c2"/>
|
|---|
| 2810 | <icon src="misc/landmark/plant.png"/>
|
|---|
| 2811 | </rule>
|
|---|
| 2812 |
|
|---|
| 2813 | <rule>
|
|---|
| 2814 | <condition k="landuse" v="greenhouse_horticulture"/>
|
|---|
| 2815 | <area colour="green#b1e0c2"/>
|
|---|
| 2816 | <icon src="misc/landuse/greenhouse_horticulture.png"/>
|
|---|
| 2817 | </rule>
|
|---|
| 2818 |
|
|---|
| 2819 | <rule>
|
|---|
| 2820 | <condition k="landuse" v="grass"/>
|
|---|
| 2821 | <area colour="green#b1e0c2"/>
|
|---|
| 2822 | <icon src="misc/landmark/plant.png"/>
|
|---|
| 2823 | </rule>
|
|---|
| 2824 |
|
|---|
| 2825 | <rule>
|
|---|
| 2826 | <condition k="landuse" v="residential"/>
|
|---|
| 2827 | <area colour="residential#f0f0f0"/>
|
|---|
| 2828 | <icon src="misc/landuse/residential.png"/>
|
|---|
| 2829 | </rule>
|
|---|
| 2830 |
|
|---|
| 2831 | <rule>
|
|---|
| 2832 | <condition k="landuse" v="garages"/>
|
|---|
| 2833 | <area colour="garages#f0f0f0"/>
|
|---|
| 2834 | <icon src="misc/landuse/garages.png"/>
|
|---|
| 2835 | </rule>
|
|---|
| 2836 |
|
|---|
| 2837 | <rule>
|
|---|
| 2838 | <condition k="landuse" v="farmyard"/>
|
|---|
| 2839 | <area colour="farmyard#f0f0f0"/>
|
|---|
| 2840 | <icon src="misc/no_icon.png"/>
|
|---|
| 2841 | </rule>
|
|---|
| 2842 |
|
|---|
| 2843 |
|
|---|
| 2844 | <rule>
|
|---|
| 2845 | <condition k="landuse" v="retail"/>
|
|---|
| 2846 | <area colour="retail#dbdbdb"/>
|
|---|
| 2847 | <icon src="shop/mall.png"/>
|
|---|
| 2848 | </rule>
|
|---|
| 2849 |
|
|---|
| 2850 | <rule>
|
|---|
| 2851 | <condition k="landuse" v="commercial"/>
|
|---|
| 2852 | <area colour="retail#dbdbdb"/>
|
|---|
| 2853 | <icon src="misc/landuse/commercial.png"/>
|
|---|
| 2854 | </rule>
|
|---|
| 2855 |
|
|---|
| 2856 | <rule>
|
|---|
| 2857 | <condition k="landuse" v="industrial"/>
|
|---|
| 2858 | <area colour="industrial#ecd8ff"/>
|
|---|
| 2859 | <icon src="misc/landmark/works.png"/>
|
|---|
| 2860 | </rule>
|
|---|
| 2861 |
|
|---|
| 2862 | <rule>
|
|---|
| 2863 | <condition k="landuse" v="brownfield"/>
|
|---|
| 2864 | <area colour="brownfield#ecba32"/>
|
|---|
| 2865 | <icon src="misc/no_icon.png"/>
|
|---|
| 2866 | </rule>
|
|---|
| 2867 |
|
|---|
| 2868 | <rule>
|
|---|
| 2869 | <condition k="landuse" v="greenfield"/>
|
|---|
| 2870 | <area colour="greenfield#b1ec5c"/>
|
|---|
| 2871 | <icon src="misc/no_icon.png"/>
|
|---|
| 2872 | </rule>
|
|---|
| 2873 |
|
|---|
| 2874 | <rule>
|
|---|
| 2875 | <condition k="landuse" v="railway"/>
|
|---|
| 2876 | <area colour="railland#888888"/>
|
|---|
| 2877 | <icon src="transport/railway_station.png"/>
|
|---|
| 2878 | </rule>
|
|---|
| 2879 |
|
|---|
| 2880 | <rule>
|
|---|
| 2881 | <condition k="landuse" v="construction"/>
|
|---|
| 2882 | <area colour="construction#ffff00"/>
|
|---|
| 2883 | <line width="1" colour="construction#ffff00" dashed="true"/>
|
|---|
| 2884 | <icon src="misc/construction.png"/>
|
|---|
| 2885 | </rule>
|
|---|
| 2886 |
|
|---|
| 2887 | <rule>
|
|---|
| 2888 | <condition k="landuse" v="military"/>
|
|---|
| 2889 | <area colour="military#b62c2c"/>
|
|---|
| 2890 | <icon src="vehicle/tank.png"/>
|
|---|
| 2891 | </rule>
|
|---|
| 2892 |
|
|---|
| 2893 | <rule>
|
|---|
| 2894 | <condition k="landuse" v="cemetery"/>
|
|---|
| 2895 | <area colour="cemetery#b1efc8"/>
|
|---|
| 2896 | <icon src="rendering/landuse/cemetery.png"/>
|
|---|
| 2897 | </rule>
|
|---|
| 2898 |
|
|---|
| 2899 | <rule>
|
|---|
| 2900 | <condition k="landuse" v="village_green"/>
|
|---|
| 2901 | <area colour="green#b1e0c2"/>
|
|---|
| 2902 | <icon src="leisure/common.png"/>
|
|---|
| 2903 | </rule>
|
|---|
| 2904 |
|
|---|
| 2905 | <rule>
|
|---|
| 2906 | <condition k="landuse" v="recreation_ground"/>
|
|---|
| 2907 | <area colour="green#b1e0c2"/>
|
|---|
| 2908 | <icon src="leisure/common.png"/>
|
|---|
| 2909 | </rule>
|
|---|
| 2910 |
|
|---|
| 2911 | <!--military tags -->
|
|---|
| 2912 |
|
|---|
| 2913 | <rule>
|
|---|
| 2914 | <condition k="military" v="airfield"/>
|
|---|
| 2915 | <icon src="transport/airport/airfield.png"/>
|
|---|
| 2916 | <area colour="military#b62c2c"/>
|
|---|
| 2917 | </rule>
|
|---|
| 2918 |
|
|---|
| 2919 | <rule>
|
|---|
| 2920 | <condition k="military" v="bunker"/>
|
|---|
| 2921 | <icon src="misc/landmark/bunker.png"/>
|
|---|
| 2922 | <area colour="military#b62c2c"/>
|
|---|
| 2923 | </rule>
|
|---|
| 2924 |
|
|---|
| 2925 | <rule>
|
|---|
| 2926 | <condition k="military" v="barracks"/>
|
|---|
| 2927 | <icon src="misc/no_icon.png"/>
|
|---|
| 2928 | <area colour="military#b62c2c"/>
|
|---|
| 2929 | </rule>
|
|---|
| 2930 |
|
|---|
| 2931 | <rule>
|
|---|
| 2932 | <condition k="military" v="danger_area"/>
|
|---|
| 2933 | <icon src="misc/danger.png"/>
|
|---|
| 2934 | <area colour="military#b62c2c"/>
|
|---|
| 2935 | </rule>
|
|---|
| 2936 |
|
|---|
| 2937 | <rule>
|
|---|
| 2938 | <condition k="military" v="range"/>
|
|---|
| 2939 | <icon src="misc/landmark/range.png"/>
|
|---|
| 2940 | <area colour="military#b62c2c"/>
|
|---|
| 2941 | </rule>
|
|---|
| 2942 |
|
|---|
| 2943 | <!--natural tags -->
|
|---|
| 2944 |
|
|---|
| 2945 | <rule>
|
|---|
| 2946 | <condition k="natural" v="spring"/>
|
|---|
| 2947 | <icon annotate="true" src="misc/landmark/spring.png"/>
|
|---|
| 2948 | <area colour="light_water#00005f"/>
|
|---|
| 2949 | </rule>
|
|---|
| 2950 |
|
|---|
| 2951 | <rule>
|
|---|
| 2952 | <condition k="natural" v="peak"/>
|
|---|
| 2953 | <area colour="peak#663300"/>
|
|---|
| 2954 | <icon annotate="true" src="misc/landmark/peak_small.png"/>
|
|---|
| 2955 | </rule>
|
|---|
| 2956 |
|
|---|
| 2957 | <rule>
|
|---|
| 2958 | <condition k="natural" v="glacier"/>
|
|---|
| 2959 | <icon annotate="true" src="misc/landmark/glacier_small.png"/>
|
|---|
| 2960 | <area colour="glacier#ffffff"/>
|
|---|
| 2961 | </rule>
|
|---|
| 2962 |
|
|---|
| 2963 | <rule>
|
|---|
| 2964 | <condition k="natural" v="volcano"/>
|
|---|
| 2965 | <icon annotate="true" src="misc/landmark/volcano_small.png"/>
|
|---|
| 2966 | <area colour="volcano#5f0000"/>
|
|---|
| 2967 | </rule>
|
|---|
| 2968 |
|
|---|
| 2969 | <rule>
|
|---|
| 2970 | <condition k="natural" v="cliff"/>
|
|---|
| 2971 | <icon src="misc/cliff.png"/>
|
|---|
| 2972 | <line width="2" colour="natural#002f00"/>
|
|---|
| 2973 | <area colour="natural#002f00" closed="true"/>
|
|---|
| 2974 | </rule>
|
|---|
| 2975 |
|
|---|
| 2976 | <rule>
|
|---|
| 2977 | <condition k="natural" v="scree"/>
|
|---|
| 2978 | <icon src="misc/no_icon.png"/>
|
|---|
| 2979 | <area colour="natural#002f00"/>
|
|---|
| 2980 | </rule>
|
|---|
| 2981 |
|
|---|
| 2982 | <rule>
|
|---|
| 2983 | <condition k="natural" v="scrub"/>
|
|---|
| 2984 | <icon src="misc/no_icon.png"/>
|
|---|
| 2985 | <area colour="scrub#007000"/>
|
|---|
| 2986 | </rule>
|
|---|
| 2987 |
|
|---|
| 2988 | <rule>
|
|---|
| 2989 | <condition k="natural" v="fell"/>
|
|---|
| 2990 | <icon src="misc/no_icon.png"/>
|
|---|
| 2991 | <area colour="natural#002f00"/>
|
|---|
| 2992 | </rule>
|
|---|
| 2993 |
|
|---|
| 2994 | <rule>
|
|---|
| 2995 | <condition k="natural" v="heath"/>
|
|---|
| 2996 | <icon src="misc/no_icon.png"/>
|
|---|
| 2997 | <area colour="heath#ffffc0"/>
|
|---|
| 2998 | </rule>
|
|---|
| 2999 |
|
|---|
| 3000 | <rule>
|
|---|
| 3001 | <condition k="natural" v="wood"/>
|
|---|
| 3002 | <icon src="misc/landmark/trees.png"/>
|
|---|
| 3003 | <area colour="woodarea#008000"/>
|
|---|
| 3004 | </rule>
|
|---|
| 3005 |
|
|---|
| 3006 | <rule>
|
|---|
| 3007 | <condition k="natural" v="grassland"/>
|
|---|
| 3008 | <icon src="misc/no_icon.png"/>
|
|---|
| 3009 | <area colour="green#b1e0c2"/>
|
|---|
| 3010 | </rule>
|
|---|
| 3011 |
|
|---|
| 3012 | <rule>
|
|---|
| 3013 | <condition k="natural" v="wetland"/>
|
|---|
| 3014 | <icon src="misc/no_icon.png"/>
|
|---|
| 3015 | <area colour="marsh#4f4ff3"/>
|
|---|
| 3016 | </rule>
|
|---|
| 3017 |
|
|---|
| 3018 | <rule>
|
|---|
| 3019 | <condition k="natural" v="water"/>
|
|---|
| 3020 | <icon src="nautical/water.png"/>
|
|---|
| 3021 | <area colour="water#0000ff"/>
|
|---|
| 3022 | </rule>
|
|---|
| 3023 |
|
|---|
| 3024 | <rule>
|
|---|
| 3025 | <condition k="natural" v="coastline"/>
|
|---|
| 3026 | <icon src="misc/coastline.png"/>
|
|---|
| 3027 | <line width="1" colour="water#0000ff"/>
|
|---|
| 3028 | </rule>
|
|---|
| 3029 |
|
|---|
| 3030 | <rule>
|
|---|
| 3031 | <condition k="natural" v="mud"/>
|
|---|
| 3032 | <icon src="misc/mud.png"/>
|
|---|
| 3033 | <area colour="mud#cba762"/>
|
|---|
| 3034 | </rule>
|
|---|
| 3035 |
|
|---|
| 3036 | <rule>
|
|---|
| 3037 | <condition k="natural" v="beach"/>
|
|---|
| 3038 | <icon src="misc/beach.png"/>
|
|---|
| 3039 | <area colour="beach#f8dba2"/>
|
|---|
| 3040 | </rule>
|
|---|
| 3041 |
|
|---|
| 3042 | <rule>
|
|---|
| 3043 | <condition k="natural" v="sand"/>
|
|---|
| 3044 | <icon src="misc/no_icon.png"/>
|
|---|
| 3045 | <area colour="sand#f8dba2"/>
|
|---|
| 3046 | </rule>
|
|---|
| 3047 |
|
|---|
| 3048 | <rule>
|
|---|
| 3049 | <condition k="natural" v="bay"/>
|
|---|
| 3050 | <icon src="misc/bay.png"/>
|
|---|
| 3051 | <area colour="natural#002f00"/>
|
|---|
| 3052 | </rule>
|
|---|
| 3053 |
|
|---|
| 3054 | <rule>
|
|---|
| 3055 | <condition k="natural" v="land"/>
|
|---|
| 3056 | <icon src="misc/no_icon.png"/>
|
|---|
| 3057 | <area colour="natural#002f00"/>
|
|---|
| 3058 | </rule>
|
|---|
| 3059 |
|
|---|
| 3060 | <rule>
|
|---|
| 3061 | <condition k="natural" v="cave_entrance"/>
|
|---|
| 3062 | <icon src="misc/landmark/cave_entrance.png"/>
|
|---|
| 3063 | <area colour="natural#002f00"/>
|
|---|
| 3064 | </rule>
|
|---|
| 3065 |
|
|---|
| 3066 | <rule>
|
|---|
| 3067 | <condition k="natural" v="tree"/>
|
|---|
| 3068 | <icon src="misc/landmark/trees.png"/>
|
|---|
| 3069 | </rule>
|
|---|
| 3070 |
|
|---|
| 3071 | <!--route tags -->
|
|---|
| 3072 |
|
|---|
| 3073 | <rule>
|
|---|
| 3074 | <condition k="route" v="bus"/>
|
|---|
| 3075 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3076 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3077 | </rule>
|
|---|
| 3078 |
|
|---|
| 3079 | <rule>
|
|---|
| 3080 | <condition k="route" v="ferry"/>
|
|---|
| 3081 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3082 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3083 | </rule>
|
|---|
| 3084 |
|
|---|
| 3085 | <rule>
|
|---|
| 3086 | <condition k="route" v="flight"/>
|
|---|
| 3087 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3088 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3089 | </rule>
|
|---|
| 3090 |
|
|---|
| 3091 | <rule>
|
|---|
| 3092 | <condition k="route" v="ncn"/>
|
|---|
| 3093 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3094 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3095 | </rule>
|
|---|
| 3096 |
|
|---|
| 3097 | <rule>
|
|---|
| 3098 | <condition k="route" v="subsea"/>
|
|---|
| 3099 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3100 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3101 | </rule>
|
|---|
| 3102 |
|
|---|
| 3103 | <rule>
|
|---|
| 3104 | <condition k="route" v="ski"/>
|
|---|
| 3105 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3106 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3107 | </rule>
|
|---|
| 3108 |
|
|---|
| 3109 | <rule>
|
|---|
| 3110 | <condition k="route" v="tour"/>
|
|---|
| 3111 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3112 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3113 | </rule>
|
|---|
| 3114 |
|
|---|
| 3115 | <rule>
|
|---|
| 3116 | <condition k="route" v="pub_crawl"/>
|
|---|
| 3117 | <line width="1" colour="route#809bc0" dashed="true"/>
|
|---|
| 3118 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3119 | </rule>
|
|---|
| 3120 |
|
|---|
| 3121 | <!--boundary tags -->
|
|---|
| 3122 |
|
|---|
| 3123 | <rule>
|
|---|
| 3124 | <condition k="boundary" v="national"/>
|
|---|
| 3125 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3126 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3127 | </rule>
|
|---|
| 3128 |
|
|---|
| 3129 | <rule>
|
|---|
| 3130 | <condition k="admin_level" v="1"/>
|
|---|
| 3131 | <line width="5" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3132 | </rule>
|
|---|
| 3133 | <rule>
|
|---|
| 3134 | <condition k="admin_level" v="2"/>
|
|---|
| 3135 | <line width="5" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3136 | </rule>
|
|---|
| 3137 | <rule>
|
|---|
| 3138 | <condition k="admin_level" v="3"/>
|
|---|
| 3139 | <line width="4" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3140 | </rule>
|
|---|
| 3141 | <rule>
|
|---|
| 3142 | <condition k="admin_level" v="4"/>
|
|---|
| 3143 | <line width="4" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3144 | </rule>
|
|---|
| 3145 | <rule>
|
|---|
| 3146 | <condition k="admin_level" v="5"/>
|
|---|
| 3147 | <line width="3" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3148 | </rule>
|
|---|
| 3149 | <rule>
|
|---|
| 3150 | <condition k="admin_level" v="6"/>
|
|---|
| 3151 | <line width="3" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3152 | </rule>
|
|---|
| 3153 | <rule>
|
|---|
| 3154 | <condition k="admin_level" v="7"/>
|
|---|
| 3155 | <line width="2" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3156 | </rule>
|
|---|
| 3157 | <rule>
|
|---|
| 3158 | <condition k="admin_level" v="8"/>
|
|---|
| 3159 | <line width="2" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3160 | </rule>
|
|---|
| 3161 | <rule>
|
|---|
| 3162 | <condition k="admin_level" v="9"/>
|
|---|
| 3163 | <line width="1" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3164 | </rule>
|
|---|
| 3165 | <rule>
|
|---|
| 3166 | <condition k="admin_level" v="10"/>
|
|---|
| 3167 | <line width="1" colour="boundary#FF6600" dashed="true"/>
|
|---|
| 3168 | </rule>
|
|---|
| 3169 |
|
|---|
| 3170 | <rule>
|
|---|
| 3171 | <condition k="boundary" v="administrative"/>
|
|---|
| 3172 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3173 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3174 | </rule>
|
|---|
| 3175 |
|
|---|
| 3176 | <rule>
|
|---|
| 3177 | <condition k="boundary" v="civil"/>
|
|---|
| 3178 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3179 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3180 | </rule>
|
|---|
| 3181 |
|
|---|
| 3182 | <rule>
|
|---|
| 3183 | <condition k="boundary" v="political"/>
|
|---|
| 3184 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3185 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3186 | </rule>
|
|---|
| 3187 |
|
|---|
| 3188 | <rule>
|
|---|
| 3189 | <condition k="boundary" v="national_park"/>
|
|---|
| 3190 | <line width="1" colour="boundary#FF6600" dashed="true" priority="-10"/>
|
|---|
| 3191 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3192 | </rule>
|
|---|
| 3193 |
|
|---|
| 3194 | <!--sport tags -->
|
|---|
| 3195 |
|
|---|
| 3196 | <rule>
|
|---|
| 3197 | <condition k="sport" v="9pin"/>
|
|---|
| 3198 | <area colour="sport#bde3cb"/>
|
|---|
| 3199 | <icon src="sport/10pin.png"/>
|
|---|
| 3200 | </rule>
|
|---|
| 3201 |
|
|---|
| 3202 | <rule>
|
|---|
| 3203 | <condition k="sport" v="10pin"/>
|
|---|
| 3204 | <area colour="sport#bde3cb"/>
|
|---|
| 3205 | <icon src="sport/10pin.png"/>
|
|---|
| 3206 | </rule>
|
|---|
| 3207 |
|
|---|
| 3208 | <rule>
|
|---|
| 3209 | <condition k="sport" v="athletics"/>
|
|---|
| 3210 | <area colour="sport#bde3cb"/>
|
|---|
| 3211 | <icon src="sport/athletics.png"/>
|
|---|
| 3212 | </rule>
|
|---|
| 3213 |
|
|---|
| 3214 | <rule>
|
|---|
| 3215 | <condition k="sport" v="soccer"/>
|
|---|
| 3216 | <area colour="sport#bde3cb"/>
|
|---|
| 3217 | <icon src="sport/soccer.png"/>
|
|---|
| 3218 | </rule>
|
|---|
| 3219 |
|
|---|
| 3220 | <rule>
|
|---|
| 3221 | <condition k="sport" v="australian_football"/>
|
|---|
| 3222 | <area colour="sport#bde3cb"/>
|
|---|
| 3223 | <icon src="sport/soccer.png"/>
|
|---|
| 3224 | </rule>
|
|---|
| 3225 |
|
|---|
| 3226 | <rule>
|
|---|
| 3227 | <condition k="sport" v="american_football"/>
|
|---|
| 3228 | <area colour="sport#bde3cb"/>
|
|---|
| 3229 | <icon src="sport/soccer.png"/>
|
|---|
| 3230 | </rule>
|
|---|
| 3231 |
|
|---|
| 3232 | <rule>
|
|---|
| 3233 | <condition k="sport" v="canadian_football"/>
|
|---|
| 3234 | <area colour="sport#bde3cb"/>
|
|---|
| 3235 | <icon src="sport/soccer.png"/>
|
|---|
| 3236 | </rule>
|
|---|
| 3237 |
|
|---|
| 3238 | <rule>
|
|---|
| 3239 | <condition k="sport" v="gaelic_football"/>
|
|---|
| 3240 | <area colour="sport#bde3cb"/>
|
|---|
| 3241 | <icon src="sport/soccer.png"/>
|
|---|
| 3242 | </rule>
|
|---|
| 3243 |
|
|---|
| 3244 | <rule>
|
|---|
| 3245 | <condition k="sport" v="rugby_league"/>
|
|---|
| 3246 | <area colour="sport#bde3cb"/>
|
|---|
| 3247 | <icon src="sport/football.png"/>
|
|---|
| 3248 | </rule>
|
|---|
| 3249 |
|
|---|
| 3250 | <rule>
|
|---|
| 3251 | <condition k="sport" v="rugby_union"/>
|
|---|
| 3252 | <area colour="sport#bde3cb"/>
|
|---|
| 3253 | <icon src="sport/football.png"/>
|
|---|
| 3254 | </rule>
|
|---|
| 3255 |
|
|---|
| 3256 | <rule>
|
|---|
| 3257 | <condition k="sport" v="baseball"/>
|
|---|
| 3258 | <area colour="sport#bde3cb"/>
|
|---|
| 3259 | <icon src="sport/baseball.png"/>
|
|---|
| 3260 | </rule>
|
|---|
| 3261 |
|
|---|
| 3262 | <rule>
|
|---|
| 3263 | <condition k="sport" v="basketball"/>
|
|---|
| 3264 | <area colour="sport#bde3cb"/>
|
|---|
| 3265 | <icon src="sport/basketball.png"/>
|
|---|
| 3266 | </rule>
|
|---|
| 3267 |
|
|---|
| 3268 | <rule>
|
|---|
| 3269 | <condition k="sport" v="boules"/>
|
|---|
| 3270 | <area colour="sport#bde3cb"/>
|
|---|
| 3271 | <icon src="sport/boule.png"/>
|
|---|
| 3272 | </rule>
|
|---|
| 3273 |
|
|---|
| 3274 | <rule>
|
|---|
| 3275 | <condition k="sport" v="bowls"/>
|
|---|
| 3276 | <area colour="sport#bde3cb"/>
|
|---|
| 3277 | <icon src="sport/boule.png"/>
|
|---|
| 3278 | </rule>
|
|---|
| 3279 |
|
|---|
| 3280 | <rule>
|
|---|
| 3281 | <condition k="sport" v="canoe"/>
|
|---|
| 3282 | <area colour="sport#bde3cb"/>
|
|---|
| 3283 | <icon src="sport/canoe.png"/>
|
|---|
| 3284 | </rule>
|
|---|
| 3285 |
|
|---|
| 3286 | <rule>
|
|---|
| 3287 | <condition k="sport" v="chess"/>
|
|---|
| 3288 | <area colour="sport#bde3cb"/>
|
|---|
| 3289 | <icon src="sport/chess.png"/>
|
|---|
| 3290 | </rule>
|
|---|
| 3291 |
|
|---|
| 3292 | <rule>
|
|---|
| 3293 | <condition k="sport" v="climbing"/>
|
|---|
| 3294 | <area colour="sport#bde3cb"/>
|
|---|
| 3295 | <icon src="sport/climbing.png"/>
|
|---|
| 3296 | </rule>
|
|---|
| 3297 |
|
|---|
| 3298 | <rule>
|
|---|
| 3299 | <condition k="sport" v="cricket"/>
|
|---|
| 3300 | <area colour="sport#bde3cb"/>
|
|---|
| 3301 | <icon src="sport/cricket.png"/>
|
|---|
| 3302 | </rule>
|
|---|
| 3303 |
|
|---|
| 3304 | <rule>
|
|---|
| 3305 | <condition k="sport" v="cricket_nets"/>
|
|---|
| 3306 | <area colour="sport#bde3cb"/>
|
|---|
| 3307 | <icon src="misc/no_icon.png"/>
|
|---|
| 3308 | </rule>
|
|---|
| 3309 |
|
|---|
| 3310 | <rule>
|
|---|
| 3311 | <condition k="sport" v="croquet"/>
|
|---|
| 3312 | <area colour="sport#bde3cb"/>
|
|---|
| 3313 | <icon src="sport/croquet.png"/>
|
|---|
| 3314 | </rule>
|
|---|
| 3315 |
|
|---|
| 3316 | <rule>
|
|---|
| 3317 | <condition k="sport" v="cycling"/>
|
|---|
| 3318 | <area colour="sport#bde3cb"/>
|
|---|
| 3319 | <icon src="sport/cycling.png"/>
|
|---|
| 3320 | </rule>
|
|---|
| 3321 |
|
|---|
| 3322 | <rule>
|
|---|
| 3323 | <condition k="sport" v="dog_racing"/>
|
|---|
| 3324 | <area colour="sport#bde3cb"/>
|
|---|
| 3325 | <icon src="leisure/dog.png"/>
|
|---|
| 3326 | </rule>
|
|---|
| 3327 |
|
|---|
| 3328 | <rule>
|
|---|
| 3329 | <condition k="sport" v="equestrian"/>
|
|---|
| 3330 | <area colour="sport#bde3cb"/>
|
|---|
| 3331 | <icon src="sport/riding.png"/>
|
|---|
| 3332 | </rule>
|
|---|
| 3333 |
|
|---|
| 3334 | <rule>
|
|---|
| 3335 | <condition k="sport" v="golf"/>
|
|---|
| 3336 | <area colour="sport#bde3cb"/>
|
|---|
| 3337 | <icon src="sport/golf.png"/>
|
|---|
| 3338 | </rule>
|
|---|
| 3339 |
|
|---|
| 3340 | <rule>
|
|---|
| 3341 | <condition k="sport" v="gymnastics"/>
|
|---|
| 3342 | <area colour="sport#bde3cb"/>
|
|---|
| 3343 | <icon src="sport/multi.png"/>
|
|---|
| 3344 | </rule>
|
|---|
| 3345 |
|
|---|
| 3346 | <rule>
|
|---|
| 3347 | <condition k="sport" v="hockey"/>
|
|---|
| 3348 | <area colour="sport#bde3cb"/>
|
|---|
| 3349 | <icon src="sport/hockey.png"/>
|
|---|
| 3350 | </rule>
|
|---|
| 3351 |
|
|---|
| 3352 | <rule>
|
|---|
| 3353 | <condition k="sport" v="horse_racing"/>
|
|---|
| 3354 | <area colour="sport#bde3cb"/>
|
|---|
| 3355 | <icon src="sport/riding.png"/>
|
|---|
| 3356 | </rule>
|
|---|
| 3357 |
|
|---|
| 3358 | <rule>
|
|---|
| 3359 | <condition k="sport" v="karting"/>
|
|---|
| 3360 | <area colour="sport#bde3cb"/>
|
|---|
| 3361 | <icon src="sport/karting.png"/>
|
|---|
| 3362 | </rule>
|
|---|
| 3363 |
|
|---|
| 3364 | <rule>
|
|---|
| 3365 | <condition k="sport" v="motocross"/>
|
|---|
| 3366 | <area colour="sport#bde3cb"/>
|
|---|
| 3367 | <icon src="sport/motocross.png"/>
|
|---|
| 3368 | </rule>
|
|---|
| 3369 |
|
|---|
| 3370 | <rule>
|
|---|
| 3371 | <condition k="sport" v="motor"/>
|
|---|
| 3372 | <area colour="sport#bde3cb"/>
|
|---|
| 3373 | <icon src="sport/motor.png"/>
|
|---|
| 3374 | </rule>
|
|---|
| 3375 |
|
|---|
| 3376 | <rule>
|
|---|
| 3377 | <condition k="sport" v="multi"/>
|
|---|
| 3378 | <area colour="sport#bde3cb"/>
|
|---|
| 3379 | <icon src="sport/multi.png"/>
|
|---|
| 3380 | </rule>
|
|---|
| 3381 |
|
|---|
| 3382 | <rule>
|
|---|
| 3383 | <condition k="sport" v="pelota"/>
|
|---|
| 3384 | <area colour="sport#bde3cb"/>
|
|---|
| 3385 | <icon src="sport/pelota.png"/>
|
|---|
| 3386 | </rule>
|
|---|
| 3387 |
|
|---|
| 3388 | <rule>
|
|---|
| 3389 | <condition k="sport" v="racquet"/>
|
|---|
| 3390 | <area colour="sport#bde3cb"/>
|
|---|
| 3391 | <icon src="sport/racquetball.png"/>
|
|---|
| 3392 | </rule>
|
|---|
| 3393 |
|
|---|
| 3394 | <rule>
|
|---|
| 3395 | <condition k="sport" v="skating"/>
|
|---|
| 3396 | <area colour="sport#bde3cb"/>
|
|---|
| 3397 | <icon src="sport/skating.png"/>
|
|---|
| 3398 | </rule>
|
|---|
| 3399 |
|
|---|
| 3400 | <rule>
|
|---|
| 3401 | <condition k="sport" v="skateboard"/>
|
|---|
| 3402 | <area colour="sport#bde3cb"/>
|
|---|
| 3403 | <icon src="sport/skateboard.png"/>
|
|---|
| 3404 | </rule>
|
|---|
| 3405 |
|
|---|
| 3406 | <rule>
|
|---|
| 3407 | <condition k="sport" v="swimming"/>
|
|---|
| 3408 | <area colour="sport#bde3cb"/>
|
|---|
| 3409 | <icon src="sport/pool.png"/>
|
|---|
| 3410 | </rule>
|
|---|
| 3411 |
|
|---|
| 3412 | <rule>
|
|---|
| 3413 | <condition k="sport" v="skiing"/>
|
|---|
| 3414 | <area colour="sport#bde3cb"/>
|
|---|
| 3415 | <icon src="sport/skiing.png"/>
|
|---|
| 3416 | </rule>
|
|---|
| 3417 |
|
|---|
| 3418 | <rule>
|
|---|
| 3419 | <condition k="sport" v="table_tennis"/>
|
|---|
| 3420 | <area colour="sport#bde3cb"/>
|
|---|
| 3421 | <icon src="sport/table_tennis.png"/>
|
|---|
| 3422 | </rule>
|
|---|
| 3423 |
|
|---|
| 3424 | <rule>
|
|---|
| 3425 | <condition k="sport" v="tennis"/>
|
|---|
| 3426 | <area colour="sport#bde3cb"/>
|
|---|
| 3427 | <icon src="sport/tennis.png"/>
|
|---|
| 3428 | </rule>
|
|---|
| 3429 |
|
|---|
| 3430 | <rule>
|
|---|
| 3431 | <condition k="sport" v="paintball"/>
|
|---|
| 3432 | <area colour="sport#bde3cb"/>
|
|---|
| 3433 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3434 | </rule>
|
|---|
| 3435 |
|
|---|
| 3436 | <rule>
|
|---|
| 3437 | <condition k="sport" v="squash"/>
|
|---|
| 3438 | <area colour="sport#bde3cb"/>
|
|---|
| 3439 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3440 | </rule>
|
|---|
| 3441 |
|
|---|
| 3442 | <rule>
|
|---|
| 3443 | <condition k="sport" v="shooting"/>
|
|---|
| 3444 | <area colour="sport#bde3cb"/>
|
|---|
| 3445 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3446 | </rule>
|
|---|
| 3447 |
|
|---|
| 3448 | <rule>
|
|---|
| 3449 | <condition k="sport" v="volleyball"/>
|
|---|
| 3450 | <area colour="sport#bde3cb"/>
|
|---|
| 3451 | <icon annotate="true" src="sport/volleyball.png"/>
|
|---|
| 3452 | </rule>
|
|---|
| 3453 |
|
|---|
| 3454 | <rule>
|
|---|
| 3455 | <condition k="sport" v="beachvolleyball"/>
|
|---|
| 3456 | <area colour="sport#bde3cb"/>
|
|---|
| 3457 | <icon annotate="true" src="sport/beachvolleyball.png"/>
|
|---|
| 3458 | </rule>
|
|---|
| 3459 |
|
|---|
| 3460 | <rule>
|
|---|
| 3461 | <condition k="sport" v="bowling"/>
|
|---|
| 3462 | <area colour="sport#bde3cb"/>
|
|---|
| 3463 | <icon annotate="true" src="sport/10pin.png"/>
|
|---|
| 3464 | </rule>
|
|---|
| 3465 |
|
|---|
| 3466 | <rule>
|
|---|
| 3467 | <condition k="sport" v="handball"/>
|
|---|
| 3468 | <area colour="sport#bde3cb"/>
|
|---|
| 3469 | <icon annotate="true" src="sport/handball.png"/>
|
|---|
| 3470 | </rule>
|
|---|
| 3471 |
|
|---|
| 3472 | <rule>
|
|---|
| 3473 | <condition k="sport" v="rowing"/>
|
|---|
| 3474 | <area colour="sport#bde3cb"/>
|
|---|
| 3475 | <icon annotate="true" src="sport/rowing.png"/>
|
|---|
| 3476 | </rule>
|
|---|
| 3477 |
|
|---|
| 3478 | <rule>
|
|---|
| 3479 | <condition k="sport" v="sailing"/>
|
|---|
| 3480 | <area colour="sport#bde3cb"/>
|
|---|
| 3481 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3482 | </rule>
|
|---|
| 3483 |
|
|---|
| 3484 | <rule>
|
|---|
| 3485 | <condition k="sport" v="diving"/>
|
|---|
| 3486 | <area colour="sport#bde3cb"/>
|
|---|
| 3487 | <icon annotate="true" src="sport/diving.png"/>
|
|---|
| 3488 | </rule>
|
|---|
| 3489 |
|
|---|
| 3490 | <rule>
|
|---|
| 3491 | <condition k="sport" v="badminton"/>
|
|---|
| 3492 | <area colour="sport#bde3cb"/>
|
|---|
| 3493 | <icon annotate="true" src="misc/no_icon.png"/>
|
|---|
| 3494 | </rule>
|
|---|
| 3495 |
|
|---|
| 3496 | <rule>
|
|---|
| 3497 | <condition k="sport" v="archery"/>
|
|---|
| 3498 | <area colour="sport#bde3cb"/>
|
|---|
| 3499 | <icon annotate="true" src="sport/archery.png"/>
|
|---|
| 3500 | </rule>
|
|---|
| 3501 |
|
|---|
| 3502 | <rule>
|
|---|
| 3503 | <condition k="sport" v="fishing"/>
|
|---|
| 3504 | <area colour="sport#bde3cb"/>
|
|---|
| 3505 | <icon annotate="true" src="sport/fishing.png"/>
|
|---|
| 3506 | </rule>
|
|---|
| 3507 |
|
|---|
| 3508 | <rule>
|
|---|
| 3509 | <condition k="sport" v="safety_training"/>
|
|---|
| 3510 | <area colour="sport#bde3cb"/>
|
|---|
| 3511 | <icon annotate="true" src="sport/safety_training.png"/>
|
|---|
| 3512 | </rule>
|
|---|
| 3513 |
|
|---|
| 3514 | <rule>
|
|---|
| 3515 | <condition k="sport" v="model_aerodrome"/>
|
|---|
| 3516 | <area colour="sport#bde3cb"/>
|
|---|
| 3517 | <icon annotate="true" src="transport/airport.png"/>
|
|---|
| 3518 | </rule>
|
|---|
| 3519 |
|
|---|
| 3520 | <rule>
|
|---|
| 3521 | <condition k="sport" v="rc_car"/>
|
|---|
| 3522 | <area colour="sport#bde3cb"/>
|
|---|
| 3523 | <icon annotate="true" src="transport/car.png"/>
|
|---|
| 3524 | </rule>
|
|---|
| 3525 |
|
|---|
| 3526 | <!--abutters tags -->
|
|---|
| 3527 |
|
|---|
| 3528 | <!--accessories tags -->
|
|---|
| 3529 |
|
|---|
| 3530 | <!--properties tags -->
|
|---|
| 3531 |
|
|---|
| 3532 | <rule>
|
|---|
| 3533 | <condition k="mountain_pass" b="yes"/>
|
|---|
| 3534 | <line width="2" realwidth="5" dashed="true" colour="deprecated#ff0000"/>
|
|---|
| 3535 | <icon src="misc/landmark/mountain_pass.png"/>
|
|---|
| 3536 | </rule>
|
|---|
| 3537 |
|
|---|
| 3538 | <!-- this will badly display otherwise well tagged footways and alike, so comment it out until we have better ways to display this in JOSM!
|
|---|
| 3539 | XXX - maybe it's possible to use linemod's here?
|
|---|
| 3540 | <rule>
|
|---|
| 3541 | <condition k="surface" v="paved"/>
|
|---|
| 3542 | <linemod mode="under" width="0" dashedcolour="#505050"/>
|
|---|
| 3543 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3544 | </rule>
|
|---|
| 3545 | <rule>
|
|---|
| 3546 | <condition k="surface" v="unpaved"/>
|
|---|
| 3547 | <linemod mode="under" width="0" dashedcolour="#301000"/>
|
|---|
| 3548 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3549 | </rule>
|
|---|
| 3550 | <rule>
|
|---|
| 3551 | <condition k="surface" v="gravel"/>
|
|---|
| 3552 | <linemod mode="under" width="0" dashedcolour="#100070"/>
|
|---|
| 3553 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3554 | </rule>
|
|---|
| 3555 |
|
|---|
| 3556 | <rule>
|
|---|
| 3557 | <condition k="surface" v="cobblestone"/>
|
|---|
| 3558 | <linemod mode="under" width="0" dashedcolour="#600060"/>
|
|---|
| 3559 | <icon annotate="true" src="misc/deprecated.png"/>
|
|---|
| 3560 | </rule>
|
|---|
| 3561 | -->
|
|---|
| 3562 |
|
|---|
| 3563 | <!--name tags -->
|
|---|
| 3564 |
|
|---|
| 3565 | <!--preferences tags -->
|
|---|
| 3566 |
|
|---|
| 3567 | <!--place tags -->
|
|---|
| 3568 |
|
|---|
| 3569 | <rule>
|
|---|
| 3570 | <condition k="place" v="continent"/>
|
|---|
| 3571 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3572 | <area colour="place#8de3cb"/>
|
|---|
| 3573 | </rule>
|
|---|
| 3574 |
|
|---|
| 3575 | <rule>
|
|---|
| 3576 | <condition k="place" v="country"/>
|
|---|
| 3577 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3578 | <area colour="place#8de3cb"/>
|
|---|
| 3579 | </rule>
|
|---|
| 3580 |
|
|---|
| 3581 | <rule>
|
|---|
| 3582 | <condition k="place" v="state"/>
|
|---|
| 3583 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3584 | <area colour="place#8de3cb"/>
|
|---|
| 3585 | </rule>
|
|---|
| 3586 |
|
|---|
| 3587 | <rule>
|
|---|
| 3588 | <condition k="place" v="region"/>
|
|---|
| 3589 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3590 | <area colour="place#8de3cb"/>
|
|---|
| 3591 | </rule>
|
|---|
| 3592 |
|
|---|
| 3593 | <rule>
|
|---|
| 3594 | <condition k="place" v="county"/>
|
|---|
| 3595 | <icon annotate="true" src="place/settlement/capital.png"/>
|
|---|
| 3596 | <area colour="place#8de3cb"/>
|
|---|
| 3597 | </rule>
|
|---|
| 3598 |
|
|---|
| 3599 | <rule>
|
|---|
| 3600 | <condition k="place" v="city"/>
|
|---|
| 3601 | <icon annotate="true" src="place/settlement/city.png"/>
|
|---|
| 3602 | <area colour="place#8de3cb"/>
|
|---|
| 3603 | </rule>
|
|---|
| 3604 |
|
|---|
| 3605 | <rule>
|
|---|
| 3606 | <condition k="place" v="town"/>
|
|---|
| 3607 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3608 | <area colour="place#8de3cb"/>
|
|---|
| 3609 | </rule>
|
|---|
| 3610 |
|
|---|
| 3611 | <rule>
|
|---|
| 3612 | <condition k="place" v="village"/>
|
|---|
| 3613 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3614 | <area colour="place#8de3cb"/>
|
|---|
| 3615 | </rule>
|
|---|
| 3616 |
|
|---|
| 3617 | <rule>
|
|---|
| 3618 | <condition k="place" v="hamlet"/>
|
|---|
| 3619 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3620 | <area colour="place#8de3cb"/>
|
|---|
| 3621 | </rule>
|
|---|
| 3622 |
|
|---|
| 3623 | <rule>
|
|---|
| 3624 | <condition k="place" v="isolated_dwelling"/>
|
|---|
| 3625 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3626 | <area colour="place#8de3cb"/>
|
|---|
| 3627 | </rule>
|
|---|
| 3628 |
|
|---|
| 3629 | <rule>
|
|---|
| 3630 | <condition k="place" v="neighbourhood"/>
|
|---|
| 3631 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3632 | <area colour="place#8de3cb"/>
|
|---|
| 3633 | </rule>
|
|---|
| 3634 |
|
|---|
| 3635 | <rule>
|
|---|
| 3636 | <condition k="place" v="suburb"/>
|
|---|
| 3637 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3638 | <area colour="place#8de3cb"/>
|
|---|
| 3639 | </rule>
|
|---|
| 3640 |
|
|---|
| 3641 | <rule>
|
|---|
| 3642 | <condition k="place" v="locality"/>
|
|---|
| 3643 | <icon annotate="true" src="place/locality.png"/>
|
|---|
| 3644 | <area colour="place#8de3cb"/>
|
|---|
| 3645 | </rule>
|
|---|
| 3646 |
|
|---|
| 3647 | <rule>
|
|---|
| 3648 | <condition k="place" v="island"/>
|
|---|
| 3649 | <icon annotate="true" src="place/island.png"/>
|
|---|
| 3650 | <area colour="place#8de3cb"/>
|
|---|
| 3651 | </rule>
|
|---|
| 3652 |
|
|---|
| 3653 | <rule>
|
|---|
| 3654 | <condition k="place" v="islet"/>
|
|---|
| 3655 | <icon annotate="true" src="place/islet.png"/>
|
|---|
| 3656 | <area colour="place#8de3cb"/>
|
|---|
| 3657 | </rule>
|
|---|
| 3658 |
|
|---|
| 3659 | <!-- special display of unreviewed tiger data (USA) -->
|
|---|
| 3660 | <rule>
|
|---|
| 3661 | <condition k="tiger:reviewed" v="no"/>
|
|---|
| 3662 | <linemod mode="under" width="10" colour="tiger_data#80800090"/>
|
|---|
| 3663 | </rule>
|
|---|
| 3664 |
|
|---|
| 3665 | <!-- lot's of "openGeoDB:..." tags can be found in germany -->
|
|---|
| 3666 | <rule>
|
|---|
| 3667 | <condition k="openGeoDB:type" v="Stadt"/>
|
|---|
| 3668 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3669 | </rule>
|
|---|
| 3670 |
|
|---|
| 3671 | <rule>
|
|---|
| 3672 | <condition k="openGeoDB:type" v="Kreis"/>
|
|---|
| 3673 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3674 | </rule>
|
|---|
| 3675 |
|
|---|
| 3676 | <rule>
|
|---|
| 3677 | <condition k="openGeoDB:type" v="Gemeinde"/>
|
|---|
| 3678 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3679 | </rule>
|
|---|
| 3680 |
|
|---|
| 3681 | <rule>
|
|---|
| 3682 | <condition k="openGeoDB:type" v="Ort"/>
|
|---|
| 3683 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3684 | </rule>
|
|---|
| 3685 |
|
|---|
| 3686 | <rule>
|
|---|
| 3687 | <condition k="openGeoDB:type" v="District"/>
|
|---|
| 3688 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3689 | </rule>
|
|---|
| 3690 |
|
|---|
| 3691 | <rule>
|
|---|
| 3692 | <condition k="openGeoDB:location" v="locality"/>
|
|---|
| 3693 | <icon annotate="true" src="place/settlement/town.png"/>
|
|---|
| 3694 | </rule>
|
|---|
| 3695 |
|
|---|
| 3696 | <!--annotation tags -->
|
|---|
| 3697 |
|
|---|
| 3698 | <!-- building/entrance/address -->
|
|---|
| 3699 |
|
|---|
| 3700 | <rule>
|
|---|
| 3701 | <condition k="building"/>
|
|---|
| 3702 | <icon annotate="true" src="misc/landmark/building.png" priority="-10000"/>
|
|---|
| 3703 | <area colour="building#cb9999" priority="-10000"/>
|
|---|
| 3704 | </rule>
|
|---|
| 3705 |
|
|---|
| 3706 | <rule>
|
|---|
| 3707 | <condition k="building" v="entrance" />
|
|---|
| 3708 | <icon annotate="true" src="misc/entrance-yes.png" priority="100"/>
|
|---|
| 3709 | </rule>
|
|---|
| 3710 |
|
|---|
| 3711 | <rule>
|
|---|
| 3712 | <condition k="entrance" v="yes" />
|
|---|
| 3713 | <icon annotate="true" src="misc/entrance-yes.png"/>
|
|---|
| 3714 | </rule>
|
|---|
| 3715 |
|
|---|
| 3716 | <rule>
|
|---|
| 3717 | <condition k="entrance" v="main" />
|
|---|
| 3718 | <icon annotate="true" src="misc/entrance-main.png"/>
|
|---|
| 3719 | </rule>
|
|---|
| 3720 |
|
|---|
| 3721 | <rule>
|
|---|
| 3722 | <condition k="entrance" v="service" />
|
|---|
| 3723 | <icon annotate="true" src="misc/entrance-service.png"/>
|
|---|
| 3724 | </rule>
|
|---|
| 3725 |
|
|---|
| 3726 | <rule>
|
|---|
| 3727 | <condition k="entrance" v="exit" />
|
|---|
| 3728 | <icon annotate="true" src="misc/entrance-exit.png"/>
|
|---|
| 3729 | </rule>
|
|---|
| 3730 |
|
|---|
| 3731 | <rule>
|
|---|
| 3732 | <condition k="entrance" v="emergency" />
|
|---|
| 3733 | <icon annotate="true" src="misc/entrance-emergency.png"/>
|
|---|
| 3734 | </rule>
|
|---|
| 3735 |
|
|---|
| 3736 | <rule>
|
|---|
| 3737 | <condition k="area" b="yes"/>
|
|---|
| 3738 | <area colour="area#ffffff" priority="-10000"/>
|
|---|
| 3739 | </rule>
|
|---|
| 3740 |
|
|---|
| 3741 | <rule>
|
|---|
| 3742 | <condition k="addr:housenumber"/>
|
|---|
| 3743 | <icon annotate="true" src="misc/housenumber.png" priority="-50000"/>
|
|---|
| 3744 | </rule>
|
|---|
| 3745 |
|
|---|
| 3746 | <rule>
|
|---|
| 3747 | <condition k="addr:postcode"/>
|
|---|
| 3748 | <icon annotate="true" src="misc/housenumber.png" priority="-50000"/>
|
|---|
| 3749 | </rule>
|
|---|
| 3750 |
|
|---|
| 3751 | <rule>
|
|---|
| 3752 | <condition k="addr:interpolation" v="odd"/>
|
|---|
| 3753 | <line width="1" realwidth="1" dashed="15,4" colour="address#1C86EE"/>
|
|---|
| 3754 | </rule>
|
|---|
| 3755 |
|
|---|
| 3756 | <rule>
|
|---|
| 3757 | <condition k="addr:interpolation" v="even"/>
|
|---|
| 3758 | <line width="1" realwidth="1" dashed="4,4" colour="address#1C86EE"/>
|
|---|
| 3759 | </rule>
|
|---|
| 3760 |
|
|---|
| 3761 | <rule>
|
|---|
| 3762 | <condition k="addr:interpolation" v="all"/>
|
|---|
| 3763 | <line width="1" realwidth="1" dashed="1,1" colour="address#1C86EE"/>
|
|---|
| 3764 | </rule>
|
|---|
| 3765 |
|
|---|
| 3766 | <rule>
|
|---|
| 3767 | <condition k="addr:interpolation" v="alphabetic"/>
|
|---|
| 3768 | <line width="1" realwidth="1" dashed="1,1" colour="address#1C86EE"/>
|
|---|
| 3769 | </rule>
|
|---|
| 3770 |
|
|---|
| 3771 | <!--"work in progress" tags -->
|
|---|
| 3772 |
|
|---|
| 3773 | <rule>
|
|---|
| 3774 | <condition k="fixme"/>
|
|---|
| 3775 | <icon annotate="true" src="misc/fixme.png" priority="10000"/>
|
|---|
| 3776 | </rule>
|
|---|
| 3777 |
|
|---|
| 3778 | <rule>
|
|---|
| 3779 | <condition k="FIXME"/>
|
|---|
| 3780 | <icon annotate="true" src="misc/fixme.png" priority="10000"/>
|
|---|
| 3781 | </rule>
|
|---|
| 3782 |
|
|---|
| 3783 | <rule>
|
|---|
| 3784 | <condition k="note"/>
|
|---|
| 3785 | <icon annotate="true" src="misc/note.png" priority="-100000"/>
|
|---|
| 3786 | </rule>
|
|---|
| 3787 |
|
|---|
| 3788 | <!--public_transport tags -->
|
|---|
| 3789 | <rule>
|
|---|
| 3790 | <condition k="public_transport" v="stop_position"/>
|
|---|
| 3791 | <condition k="train" v="yes"/>
|
|---|
| 3792 | <icon annotate="true" src="transport/railway_small.png" priority="10" />
|
|---|
| 3793 | </rule>
|
|---|
| 3794 |
|
|---|
| 3795 | <rule>
|
|---|
| 3796 | <condition k="public_transport" v="stop_position"/>
|
|---|
| 3797 | <condition k="tram" v="yes"/>
|
|---|
| 3798 | <icon annotate="true" src="transport/tram.png" priority="8" />
|
|---|
| 3799 | </rule>
|
|---|
| 3800 |
|
|---|
| 3801 | <rule>
|
|---|
| 3802 | <condition k="public_transport" v="stop_position"/>
|
|---|
| 3803 | <condition k="ferry" v="yes"/>
|
|---|
| 3804 | <icon annotate="true" src="transport/ferry.png" priority="7" />
|
|---|
| 3805 | </rule>
|
|---|
| 3806 |
|
|---|
| 3807 | <rule>
|
|---|
| 3808 | <condition k="public_transport" v="stop_position"/>
|
|---|
| 3809 | <condition k="aerial" v="yes"/>
|
|---|
| 3810 | <icon annotate="true" src="transport/aerialway.png" priority="6" />
|
|---|
| 3811 | </rule>
|
|---|
| 3812 |
|
|---|
| 3813 | <rule>
|
|---|
| 3814 | <condition k="public_transport" v="stop_position"/>
|
|---|
| 3815 | <condition k="bus" v="yes"/>
|
|---|
| 3816 | <icon annotate="true" src="transport/bus_small.png" priority="4" />
|
|---|
| 3817 | </rule>
|
|---|
| 3818 |
|
|---|
| 3819 | <rule>
|
|---|
| 3820 | <condition k="public_transport" v="stop_position"/>
|
|---|
| 3821 | <icon annotate="true" src="transport/railway_small.png" priority="-10"/>
|
|---|
| 3822 | </rule>
|
|---|
| 3823 |
|
|---|
| 3824 | <rule>
|
|---|
| 3825 | <condition k="public_transport" v="platform"/>
|
|---|
| 3826 | <condition k="train" v="yes"/>
|
|---|
| 3827 | <icon annotate="true" src="transport/railway_station.png" priority="10" />
|
|---|
| 3828 | <line width="1" realwidth="1" colour="service#809bc0" dashed="9" dashedcolour="livingdashed#00ff00"/>
|
|---|
| 3829 | </rule>
|
|---|
| 3830 |
|
|---|
| 3831 | <rule>
|
|---|
| 3832 | <condition k="public_transport" v="platform"/>
|
|---|
| 3833 | <condition k="tram" v="yes"/>
|
|---|
| 3834 | <icon annotate="true" src="transport/railway_station.png" priority="8" />
|
|---|
| 3835 | <line width="1" realwidth="1" colour="service#809bc0" dashed="9" dashedcolour="livingdashed#00ff00"/>
|
|---|
| 3836 | </rule>
|
|---|
| 3837 |
|
|---|
| 3838 | <rule>
|
|---|
| 3839 | <condition k="public_transport" v="platform"/>
|
|---|
| 3840 | <condition k="ferry" v="yes"/>
|
|---|
| 3841 | <icon annotate="true" src="transport/ferry.png" priority="7" />
|
|---|
| 3842 | <line width="1" realwidth="1" colour="service#809bc0" dashed="9" dashedcolour="livingdashed#00ff00"/>
|
|---|
| 3843 | </rule>
|
|---|
| 3844 |
|
|---|
| 3845 | <rule>
|
|---|
| 3846 | <condition k="public_transport" v="platform"/>
|
|---|
| 3847 | <condition k="aerial" v="yes"/>
|
|---|
| 3848 | <icon annotate="true" src="transport/aerialway/station.png" priority="6" />
|
|---|
| 3849 | <line width="1" realwidth="1" colour="service#809bc0" dashed="9" dashedcolour="livingdashed#00ff00"/>
|
|---|
| 3850 | </rule>
|
|---|
| 3851 |
|
|---|
| 3852 | <rule>
|
|---|
| 3853 | <condition k="public_transport" v="platform"/>
|
|---|
| 3854 | <condition k="bus" v="yes"/>
|
|---|
| 3855 | <icon annotate="true" src="transport/bus_small.png" priority="4" />
|
|---|
| 3856 | <line width="1" realwidth="1" colour="service#809bc0" dashed="9" dashedcolour="livingdashed#00ff00"/>
|
|---|
| 3857 | </rule>
|
|---|
| 3858 |
|
|---|
| 3859 | <rule>
|
|---|
| 3860 | <condition k="public_transport" v="platform"/>
|
|---|
| 3861 | <icon annotate="true" src="transport/bus_small.png" priority="-10"/>
|
|---|
| 3862 | <line width="1" realwidth="1" colour="service#809bc0" dashed="9" dashedcolour="livingdashed#00ff00"/>
|
|---|
| 3863 | </rule>
|
|---|
| 3864 |
|
|---|
| 3865 | <!--"deprecated" tags -->
|
|---|
| 3866 |
|
|---|
| 3867 | <!-- historic=museum -> tourism=museum -->
|
|---|
| 3868 | <!-- man_made=power_wind -> power=generator and power_source=wind -->
|
|---|
| 3869 | <!-- man_made=power_hydro -> power=generator and power_source=hydro -->
|
|---|
| 3870 | <!-- man_made=power_fossil -> power=generator and power_source=fossil -->
|
|---|
| 3871 | <!-- man_made=power_nuclear -> power=generator and power_source=nuclear -->
|
|---|
| 3872 | <!-- amenity=park_bench -> amenity=bench -->
|
|---|
| 3873 | <!-- amenity=signpost -> information=guidepost -->
|
|---|
| 3874 | <!-- amenity=emergency_phone -> emergency=phone -->
|
|---|
| 3875 | <!-- highway minor - classification now more detailed -->
|
|---|
| 3876 | <!-- highway=stile -> barrier=stile -->
|
|---|
| 3877 | <!-- highway=gate -> barrier=gate -->
|
|---|
| 3878 | <!-- highway=cattle_grid -> barrier=cattle_grid -->
|
|---|
| 3879 | <!-- highway=toll_booth -> barrier=toll_booth -->
|
|---|
| 3880 | <!-- highway=viaduct -> bridge=viaduct -->
|
|---|
| 3881 | <!-- railway=viaduct -> bridge=viaduct -->
|
|---|
| 3882 | <!-- waterway=aqueduct -> bridge=aqueduct -->
|
|---|
| 3883 | <!-- natural=marsh -> natural=wetland -->
|
|---|
| 3884 | <!-- leisure=zoo -> tourism=zoo -->
|
|---|
| 3885 |
|
|---|
| 3886 | </rules>
|
|---|