1 | <annotations>
|
---|
2 | <item name="Autobahn" type="way">
|
---|
3 | <label text="Autobahnen in Deutschland"/>
|
---|
4 |
|
---|
5 | <text key="name" text="Autobahn (z.B. A99)"/>
|
---|
6 |
|
---|
7 | <!-- Autobahns are usually oneway -->
|
---|
8 | <check key="oneway" text="Oneway" default="on"/>
|
---|
9 |
|
---|
10 | <!-- Always setting class=Autobahn -->
|
---|
11 | <key key="highway" value="motorway"/>
|
---|
12 | <key key="class" value="Autobahn"/>
|
---|
13 | </item>
|
---|
14 |
|
---|
15 | <item name="Bundesstrasse" type="way">
|
---|
16 | <label text="Bundesstrassen in Deutschland"/>
|
---|
17 |
|
---|
18 | <text key="name" text="Bundesstrasse (z.B. B11)"/>
|
---|
19 |
|
---|
20 | <!-- Bundesstrasses are usually not oneway -->
|
---|
21 | <check key="oneway" text="Oneway" default="off"/>
|
---|
22 |
|
---|
23 | <!-- Always setting class=Bundesstrasse -->
|
---|
24 | <key key="highway" value="primary"/>
|
---|
25 | <key key="class" value="Bundesstrasse"/>
|
---|
26 | </item>
|
---|
27 |
|
---|
28 | <item name="Landstrasse" type="way">
|
---|
29 | <label text="Landstrassen in Deutschland"/>
|
---|
30 |
|
---|
31 | <text key="name" text="Name"/>
|
---|
32 |
|
---|
33 | <!-- Landstrasses are usually not oneway -->
|
---|
34 | <check key="oneway" text="Oneway" default="off"/>
|
---|
35 |
|
---|
36 | <!-- Always setting class=Landstrasse -->
|
---|
37 | <key key="highway" value="secondary"/>
|
---|
38 | <key key="class" value="Landstrasse"/>
|
---|
39 | </item>
|
---|
40 |
|
---|
41 | <item name="Nebenstrasse" type="way">
|
---|
42 | <label text="Nebenstrasse in Deutschland"/>
|
---|
43 |
|
---|
44 | <text key="name" text="Name"/>
|
---|
45 |
|
---|
46 | <!-- Nebenstrasses are usually not oneway -->
|
---|
47 | <check key="oneway" text="Oneway" default="off"/>
|
---|
48 |
|
---|
49 | <!-- Always setting class=Landstrasse -->
|
---|
50 | <key key="highway" value="unclassified"/>
|
---|
51 | <key key="class" value="Nebenstrasse"/>
|
---|
52 | </item>
|
---|
53 |
|
---|
54 | <item name="Wohnstrasse" type="way">
|
---|
55 | <label text="Wohnstrasse in Deutschland"/>
|
---|
56 |
|
---|
57 | <text key="name" text="Name"/>
|
---|
58 |
|
---|
59 | <!-- Wohnstrasses are usually not oneway -->
|
---|
60 | <check key="oneway" text="Oneway" default="off"/>
|
---|
61 |
|
---|
62 | <!-- Always setting class=Wohnstrasse -->
|
---|
63 | <key key="highway" value="residential"/>
|
---|
64 | <key key="class" value="Wohnstrasse"/>
|
---|
65 | </item>
|
---|
66 |
|
---|
67 | </annotations>
|
---|