Skip to content

Instantly share code, notes, and snippets.

@naoliv
Created June 2, 2016 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naoliv/b059c31adb7991851a50638a38c8b9b1 to your computer and use it in GitHub Desktop.
Save naoliv/b059c31adb7991851a50638a38c8b9b1 to your computer and use it in GitHub Desktop.
/* em azul pontos de ônibus que já existem e não foram modificados */
node|z15-[public_transport = platform]!:modified {
icon-image: none;
symbol-shape: octagon;
symbol-size: 15;
symbol-fill-color: blue;
}
/* em laranja pontos de ônibus utilizando o padrão antigo (atualizar, se possível) */
node|z15-[highway = bus_stop] {
icon-image: none;
symbol-shape: octagon;
symbol-size: 15;
symbol-fill-color: orange;
}
/* pontos de ônibus a serem feitos */
node|z15-[pt_nome] {
icon-image: none;
symbol-shape: octagon;
symbol-size: 20;
symbol-fill-color: red;
}
/* pontos de ônibus já feitos ou modificados */
node|z15-[public_transport = platform][!pt_nome]:modified {
icon-image: none;
symbol-shape: octagon;
symbol-size: 15;
symbol-fill-color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment