source: josm/trunk/test/data/renderer/node-shapes2/style.mapcss@ 12978

Last change on this file since 12978 was 12978, checked in by bastiK, 7 years ago

promote old MapCSS reference file to MapCSSRendererTest checks

File size: 1.3 KB
Line 
1meta {
2 title: "MapCSS tests: node symbols";
3}
4
5node[ test:fill ]
6{
7 symbol-size: 50;
8 symbol-fill-color: purple;
9}
10node[ test:fill = circle ] { symbol-shape : circle ; } /* whitespace at all possible places */
11node[test:fill=square]{symbol-shape:square;} /* no whitespace at all */
12node[ test:fill = triangle ] { symbol-shape: triangle; }
13node[ test:fill = pentagon ] { symbol-shape: pentagon }
14node[ test:fill = hexagon ] { symbol-shape: hexagon; }
15node[ test:fill = heptagon ] { symbol-shape: heptagon; }
16node[ test:fill = octagon ] { symbol-shape: octagon; }
17node[ test:fill = nonagon ] {symbol-shape: nonagon; }
18node[ test:fill = decagon ] { symbol-shape: decagon; }
19
20node[ test:stroke ]
21{
22 symbol-size: 50;
23 symbol-stroke-color: purple;
24}
25node[ test:stroke = circle ] { symbol-shape: circle; }
26node[ test:stroke = square ] { symbol-shape: square; }
27node[ test:stroke = triangle ] { symbol-shape: triangle; }
28node[ test:stroke = triangle ] { symbol-shape: triangle; }
29node[ test:stroke = pentagon ] { symbol-shape: pentagon; }
30node[ test:stroke = hexagon ] { symbol-shape: hexagon; }
31node[ test:stroke = heptagon ] { symbol-shape: heptagon; }
32node[ test:stroke = octagon ] { symbol-shape: octagon; }
33node[ test:stroke = nonagon ] { symbol-shape: nonagon; }
34node[ test:stroke = decagon ] { symbol-shape: decagon; }
35
Note: See TracBrowser for help on using the repository browser.