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