-
Notifications
You must be signed in to change notification settings - Fork 11
/
raster.mss
56 lines (52 loc) · 922 Bytes
/
raster.mss
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
/**
File with Raster Layers. Hillshading and Satellite images
**/
#hillshading [zoom<12] {
raster-scaling: bilinear;
[zoom=11] {
raster-opacity: 0.25;
raster-comp-op: soft-light;
}
[zoom=10] {
raster-opacity: 0.08;
raster-comp-op: multiply;
}
[zoom=9] {
raster-opacity: 0.10;
raster-comp-op: hard-light;
}
[zoom<9] {
raster-opacity: 0.15;
raster-comp-op: hard-light;
}
[zoom<7] {
raster-opacity: 0.16;
raster-comp-op: hard-light;
}
}
.luftbild [zoom<11][zoom>7] {
raster-comp-op: hard-light;
[zoom=7] {
raster-opacity: 0.40;
}
[zoom<=8][zoom>=7]{
raster-opacity: 0.25;
}
[zoom=9]{
raster-opacity: 0.15;
}
[zoom=10]{
raster-opacity: 0.10;
}
raster-scaling: bilinear;
raster-opacity: 0;
}
.luftbild [zoom<8] {
raster-comp-op: hard-light;
raster-scaling: bilinear;
raster-opacity: 0.40;
}
#naturalearth[zoom<3] {
raster-opacity: 0.8;
raster-scaling: lanczos;
}