-
Notifications
You must be signed in to change notification settings - Fork 0
/
ColorWays.mapcss
83 lines (64 loc) · 1.24 KB
/
ColorWays.mapcss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
meta {
title: "Color Ways";
description: "Choose your preferred color and line width of building outlines for better visibility on different backgrounds. Also highways and waterways have clearer colors";
version: "0.2.20_2020-11-25";
author: "Martien van de Griendt, osm username martien-vdg";
link: "https://josm.openstreetmap.de/wiki/Styles/ColorWays";
}
/* Setting Options */
setting::colordisplay {
type: color;
label: tr("Color used for displaying buildings");
default: green;
}
setting::building_line_width {
type: double;
label: tr("Choose line width of building");
default: 2;
}
/* Settings */
/* Buildings */
way[building] {
color: setting("colordisplay");
}
way[building] {
width: setting("building_line_width");
}
/* Highways */
way[highway=unclassified]
{
width: 4;
color: white;
}
way[highway=track]
{
width: 4;
color: peru;
dashes: 12,9;
dashes-background-color: springgreen;
}
way[highway=path]
{
width: 2;
color: DarkOrange;
}
way[highway=service]
{
width: 3;
color: aqua;
}
way[highway=residential]
{
width: 2;
color: Aquamarine;
}
/* Waterways */
way[waterway=stream]
{
width: 2;
color: DeepSkyBlue;
}
way[waterway=river]
{
width: 6;
}