Changes between Initial Version and Version 1 of Presets/Quick-highways


Ignore:
Timestamp:
2013-05-14T21:43:42+02:00 (13 years ago)
Author:
eugkat
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Presets/Quick-highways

    v1 v1  
     1This preset designed for quick adding tags by click on toolbar.
     2It contains two groups with most popular highway=* and surface=* tags and group for tagging most common cases of bridges and tunnels.
     3
     4[[Image(screenshot.png)]]
     5
     6{{{
     7#!preset
     8<annotations
     9        shortdescription="Quick-highways"
     10        ru.shortdescription="Быстро-дороги"
     11        description="Presets for quickly adding popular highway=* and surface=* tags"
     12        ru.description="Пресеты для быстрого добавления поппулярных тэгов highway=* и surface=*"
     13        author="lzhl"
     14        version="0.[[revision]]_[[date]]">
     15
     16        <group name="Quick-highways" ru.name="Быстро-дороги" icon="motorway.png">
     17                <group name="highway=*" icon="secondary.png">
     18                        <item name="motorway" ru.name="motorway" icon="motorway.png" type="way">
     19                                <key key="highway" value="motorway" />
     20                        </item>
     21                       
     22                        <item name="trunk" ru.name="trunk" icon="trunk.png" type="way">
     23                                <key key="highway" value="trunk" />
     24                        </item>
     25                       
     26                        <item name="primary" ru.name="primary" icon="primary.png" type="way">
     27                                <key key="highway" value="primary" />
     28                        </item>
     29                       
     30                        <item name="secondary" ru.name="secondary" icon="secondary.png" type="way">
     31                                <key key="highway" value="secondary" />
     32                        </item>
     33                       
     34                        <item name="tertiary" ru.name="tertiary" icon="tertiary.png" type="way">
     35                                <key key="highway" value="tertiary" />
     36                        </item>
     37                       
     38                        <item name="unclassified" ru.name="unclassified" icon="unclassified.png" type="way">
     39                                <key key="highway" value="unclassified" />
     40                        </item>
     41                       
     42                        <item name="residential" ru.name="residential" icon="residential.png" type="way">
     43                                <key key="highway" value="residential" />
     44                        </item>
     45                       
     46                        <item name="service" ru.name="service" icon="service.png" type="way">
     47                                <key key="highway" value="service" />
     48                        </item>
     49                       
     50                        <item name="track" ru.name="track" icon="track.png" type="way">
     51                                <key key="highway" value="track" />
     52                        </item>
     53                       
     54                        <item name="footway" ru.name="footway" icon="footway.png" type="way">
     55                                <key key="highway" value="footway" />
     56                        </item>
     57                       
     58                        <item name="path" ru.name="path" icon="path.png" type="way">
     59                                <key key="highway" value="path" />
     60                        </item>
     61                       
     62                        <item name="steps" ru.name="steps" icon="steps.png" type="way">
     63                                <key key="highway" value="steps" />
     64                        </item>
     65                </group>
     66               
     67                <group name="surface=*" icon="asphalt.png">
     68                        <item name="asphalt" ru.name="асфальт" icon="asphalt.png" type="way">
     69                                <key key="surface" value="asphalt" />
     70                        </item>
     71                       
     72                        <item name="concrete" ru.name="бетон" icon="concrete.png" type="way">
     73                                <key key="surface" value="concrete" />
     74                        </item>
     75                       
     76                        <item name="paving_stones" ru.name="брусчатка" icon="paving_stones.png" type="way">
     77                                <key key="surface" value="paving_stones" />
     78                        </item>
     79                       
     80                        <item name="gravel" ru.name="гравий" icon="gravel.png" type="way">
     81                                <key key="surface" value="gravel" />
     82                        </item>
     83                       
     84                        <item name="wood" ru.name="дерево" icon="wood.png" type="way">
     85                                <key key="surface" value="wood" />
     86                        </item>
     87                       
     88                        <item name="dirt" ru.name="земля" icon="dirt.png" type="way">
     89                                <key key="surface" value="dirt" />
     90                        </item>
     91                       
     92                        <item name="sand" ru.name="песок" icon="sand.png" type="way">
     93                                <key key="surface" value="sand" />
     94                        </item>
     95                       
     96                        <item name="grass" ru.name="трава" icon="grass.png" type="way">
     97                                <key key="surface" value="grass" />
     98                        </item>
     99                </group>
     100               
     101                <group name="additional" ru.name="дополнительно" icon="bridge.png">
     102                        <item name="bridge" ru.name="мост" icon="bridge.png" type="way">
     103                                <key key="bridge" value="yes" />
     104                                <key key="layer" value="1" />
     105                        </item>
     106                       
     107                        <item name="tunnel" ru.name="тоннель" icon="tunnel.png" type="way">
     108                                <key key="tunnel" value="yes" />
     109                                <key key="layer" value="-1" />
     110                        </item>
     111                </group>
     112        </group>
     113</annotations>
     114}}}