Search notes:

Overpass Turbo extension for the Overpass API: Default MapCSS style

node {
  color:#03f;
  width:2;
  opacity:0.7;
  fill-color:#fc0;
  fill-opacity:0.3;
}

line {
  color:#03f;
  width:5;
  opacity:0.6;
}

area {
  color:#03f;
  width:2;
  opacity:0.7;
  fill-color:#fc0;
  fill-opacity:0.3;
}

relation node, relation way, relation relation {
  color:#d0f;
}

way:tainted, relation:tainted {
  dashes:5,8;
}

way:placeholder, relation:placeholder {
  fill-color:red;
}

node:active, way:active, relation:active {
  color:#f50;
  fill-color:#f50;
}

See also

The {{style: … }} extension for Overpass API.

Index