zhongrj
2025-11-24 276323dce9613867abb3f58a4cc2abbfb2fd0dea
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
[data-mapview]{
    height: calc(100vh - 100px);
    height: calc(100dvh - 100px);
}
 
.map-view{
    .map-title{
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    height: calc(100% - 20px);
    position: relative;
 
    input.opacity[type="range"]{
        margin-left: 4px;
        display: inline-block;
        width: 130px;
        position: relative;
        top: 6px;
    }
 
    .map-container{
        height: 100%;
        position: relative;
        .standby{
            z-index: 99999;
        }
    }
 
    .map-view-header{
        display: flex;
        justify-content: space-between;
        .map-type-selector{
            flex: none;
        }
    }
}