Changes between Initial Version and Version 1 of Styles/Lit


Ignore:
Timestamp:
2011-03-15T08:10:23+01:00 (15 years ago)
Author:
cmuelle8
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Styles/Lit

    v1 v1  
     1== Lit style ==
     2
     3This style adds display of lit streets to the map.
     4
     5=== The style itself ===
     6
     7{{{
     8#!style
     9<?xml version="1.0" encoding="UTF-8"?>
     10<rules xmlns="http://josm.openstreetmap.de/mappaint-style-1.0"
     11       author="cmuelle8" shortdescription="Lit" de.shortdescription="Straßenbeleuchtung"
     12       description="Show lit=yes/no settings in JOSM map display"
     13       de.description="Anzeige der Straßenbeleuchtung in der JOSM-Kartenanzeige"
     14       version="1.[[revision]]_[[date]]">
     15  <rule>
     16    <condition k="lit" v="yes|1|true"/>
     17    <linemod mode="over" width="10" realwidth="8" colour="lit_yes#EEEECCB0"/>
     18  </rule>
     19  <rule>
     20    <condition k="lit" v="no|0|false"/>
     21    <linemod mode="over" width="10" realwidth="8" colour="lit_no#000000B0"/>
     22  </rule>
     23</rules>
     24}}}