ibikecph / cphbikes

I Bike CPH Carto (old)
2 stars 3 forks source link

adding roads to low zooms #65

Closed sensescape closed 11 years ago

sensescape commented 11 years ago

not seeing roads, need to add z8 and z9

below is not working [zoom>=9] { ::outline { line-width: 1; }

line-width: 0.5;

}

mojodna commented 11 years ago

High Road only includes data to zoom 10, so we need to manually pull features from planet_osm_line. Let's do this together tomorrow so we can decide which road types to include.

mojodna commented 11 years ago

Now in roads.mss:

/* Low-zoom roads */

.line[highway='motorway'],
.line[highway='trunk'],
.line[highway='primary'],
.line[highway='secondary'],
{
  [zoom<10]
  {
    line-width: 5;
    line-color: #f0f;
  }
}
sensescape commented 11 years ago

screen shot 2013-05-29 at 4 18 25 pm

done