Changes between Version 9 and Version 10 of Styles/ColorWays


Ignore:
Timestamp:
2020-11-15T17:33:16+01:00 (5 years ago)
Author:
martien-vdg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Styles/ColorWays

    v9 v10  
    1212
    1313[[Image(https://raw.githubusercontent.com/vdgwebsites/mapcss/main/mapstyle-colorpicker.JPG)]]
     14
     15=== Legend
     16
     17Highways
     18* unclassified -> white
     19* track -> dotted brown - green
     20* residential -> light green
     21* service -> aqua blue
     22
     23Waterways
     24* river -> default
     25* stream -> DeepSkyBlue
    1426
    1527=== The code
     
    4557
    4658way[building] {
    47   color: setting("colordisplay");
     59    color: setting("colordisplay");
    4860}
    4961
    5062way[building] {
    51   width: setting("building_line_width");
     63    width: setting("building_line_width");
    5264}
    5365
     
    5769way[highway=unclassified]
    5870{
    59         width: 4;
     71    width: 4;
    6072    color: white;
    6173}
     
    7789way[highway=residential]
    7890{
    79         width: 2;
    80     color: Aquamarine   ;
     91    width: 2;
     92    color: Aquamarine;
    8193}
    8294
     
    8597way[waterway=stream]
    8698{
    87 
    88         width: 2;
     99    width: 2;
    89100    color: DeepSkyBlue;
    90 
    91101}
    92102
    93103way[waterway=river]
    94104{
    95 
    96         width: 6;
    97 
     105    width: 6;
    98106}
    99107