source: josm/trunk/test/data/styles/label-from-tag.mapcss@ 6471

Last change on this file since 6471 was 3991, checked in by bastiK, 13 years ago

fix wrongly applied patch

File size: 368 bytes
Line 
1/*
2 * Simple test style sheet. Includes a style for nodes where the label is derived
3 * from the value of a specific tag.
4 *
5 */
6
7meta {
8 title: "Test style - Deriving labels from tags";
9}
10
11canvas {
12 background-color: #000000;
13}
14
15node {
16 text: my_label_tag; /* take the value of the tag 'my_label_tag' as text */
17 text-color: white;
18 font-size: 12;
19}
Note: See TracBrowser for help on using the repository browser.