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