Welcome to mirror list, hosted at ThFree Co, Russian Federation.

landuse.mapcss « include « new_style « styles « data - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5223ec014343128eec6838a25423edb48045b324 (plain)
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

/*
area|z11-[place=city],
area|z11-[place=town],
area|z11-[place=village],
area|z11-[place=hamlet] {
fill-color: @background;
}
*/


/* PEDESTRIAN AREAS */

area|z15[highway=pedestrian][area?],
area|z15[area:highway=pedestrian],
area|z15[highway=footway][area?][!sac_scale],
area|z15[area:highway=footway],
{
  fill-color: @pedestrian_area;
  fill-opacity: 0.3;
  z-index: 550;
}

area|z16-[highway=pedestrian][area?],
area|z16-[area:highway=pedestrian],
area|z16-[highway=footway][area?][!sac_scale],
area|z16-[area:highway=footway],
{
  fill-color: @pedestrian_area;
  fill-opacity: 0.3;
  z-index: 550;
}

/* INDUSTRIAL */

area|z15-[landuse=industrial] {
  fill-color: @industrial;
  fill-opacity: 1;
  z-index: 150;
}


/* CEMETRY */
area|z12-[landuse=cemetery] {
  fill-color: @park;
  fill-opacity: 0.5;
  z-index: 150;
}


/* UNIVERSITY */
area|z14-[amenity=university] {
  fill-color: @unversity;
  fill-opacity: 0.5;
  z-index: 150;
}

area|z14-[amenity=hospital] {
  fill-color: @hospital;
  fill-opacity: 1;
  z-index: 150;
}