source: josm/trunk/test/data/renderer/way-repeat-image-clamp/style.mapcss

Last change on this file was 12455, checked in by michael2402, 6 years ago

Fix #14926: Preserve image phase when clamping a line.

File size: 339 bytes
Line 
1canvas {
2    default-points: false;
3    default-lines: false;
4}
5
6way[pattern] {
7        width: 1;
8        color: red;
9    repeat-image: "trees.svg";
10    repeat-image-align: bottom;
11    repeat-image-offset: 2;
12    repeat-image-spacing: 20;
13        repeat-image-phase: 0;
14}
15
16way[pattern=B] {
17        repeat-image-phase: 4;
18}
19
20way[pattern=C] {
21        repeat-image-phase: 8;
22}
Note: See TracBrowser for help on using the repository browser.