Changeset 2829 in josm


Ignore:
Timestamp:
2010-01-12T17:41:11+01:00 (14 years ago)
Author:
bastiK
Message:

draw the combinations highway=path, bicycle=designated & foot=designated correctly (see #3978)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/styles/standard/elemstyles.xml

    r2816 r2829  
    709709        </rule>
    710710
     711    <!-- display path with bicycle/foot=designated as if it was cycleway/footway -->
     712        <rule>
     713                <condition k="highway" v="path"/>
     714                <condition k="bicycle" v="designated"/>
     715                <line width="1" realwidth="2" colour="bicycle#b100ff" priority="100"/>
     716                <scale_min>1</scale_min>
     717                <scale_max>50000</scale_max>
     718        </rule>
     719
     720        <rule>
     721                <condition k="highway" v="path"/>
     722                <condition k="foot" v="designated"/>
     723                <line width="1" realwidth="1" colour="foot#00ff00" priority="100"/>
     724                <scale_min>1</scale_min>
     725                <scale_max>50000</scale_max>
     726        </rule>
     727
     728        <rule>
     729                <condition k="highway" v="path"/>
     730                <condition k="bicycle" v="designated"/>
     731                <condition k="foot" v="designated"/>
     732                <line width="1" realwidth="2" colour="bicycle#b100ff" dashedcolour="foot#00ff00" dashed="14,14" priority="200"/>
     733                <scale_min>1</scale_min>
     734                <scale_max>50000</scale_max>
     735        </rule>
     736       
    711737        <rule>
    712738                <condition k="highway" v="pedestrian"/>
Note: See TracChangeset for help on using the changeset viewer.