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
| .content-container {
| position: relative;
| display: flex;
| height: 100%;
|
| .map-scene {
| flex: 1;
| // position: relative;
| // top: 0;
| // left: 0;
| height: 100%;
|
| // z-index: 1;
| &>div {
| position: relative;
| width: 100%;
| height: 100%;
| }
|
| .tool-content {
| position: absolute;
| top: 90px;
| right: 11px;
| height: auto;
| width: 30px;
| height: 30px;
| line-height: 30px;
| text-align: center;
| border-radius: 5px;
| color: #666;
| cursor: pointer;
| background: #fff;
| z-index: 99;
| box-shadow: 0px 0px 4px 1px #ccc;
| }
|
| #map {
| .ol-layer {
| canvas {
| width: 100% !important;
| height: 100% !important;
| }
| }
|
| .ol-attribution {
| display: none;
| }
|
| .cesium-credit-logoContainer {
| display: none !important;
| }
| }
| }
|
| .main-content {
| position: absolute;
| top: 60px;
| left: 0;
| width: auto;
| height: 100%;
| z-index: 99;
| // z-index: 99;
| .el-card {
| box-sizing: border-box;
| }
| }
|
| }
|
|