Changes between Initial Version and Version 1 of Styles/Highway_Nodes


Ignore:
Timestamp:
2014-01-16T03:17:29+01:00 (12 years ago)
Author:
naoliv
Comment:

Initial version

Legend:

Unmodified
Added
Removed
Modified
  • Styles/Highway_Nodes

    v1 v1  
     1This style highlights untagged and unconnected nodes in a way
     2{{{
     3#!style type="mapcss"
     4meta {
     5  title: "Highway Nodes";
     6  version: "1.1_2014-01-16";
     7  description: "Highlights untagged and unconnected nodes in a way";
     8  author: "naoliv";
     9  link: "http://josm.openstreetmap.de/wiki/Styles/Highway_Nodes";
     10  watch-modified: true;
     11}
     12
     13/* highlight all the nodes */
     14way[highway] > node {
     15  symbol-size:10;
     16  symbol-shape: square;
     17  symbol-stroke-color: #00ffff;
     18  symbol-fill-color: blue;
     19}
     20
     21/* dim the nodes that we don't want */
     22node:connection, node:tagged {
     23  symbol-size:4;
     24  symbol-fill-color: #808080;
     25  symbol-stroke-color: #808080;
     26}
     27}}}