shuishen
2022-11-02 764cb58899b8ca0e9632a5e83c6950569442c41c
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
.sm-compass{
    pointer-events: auto;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 128px;
    height: 128px;
    overflow: hidden;
}
.sm-compass-outer-ring{
    cursor: pointer;
    position: absolute;
    width: 128px;
    height: 128px;
    top: 0px;
    transform: rotate(0rad);
    -webkit-transform: rotate(0rad);
    background-image: url("../Images/Navigation/ring.png");
}
.sm-compass-outer-ring:active{
    background-image: url("../Images/Navigation/ring_active.png");
}
.sm-compass-tilt{
    position: absolute;
    width: 128px;
    height: 128px;
    background-image: url("../Images/Navigation/tilt.png");
    visibility: hidden;
}
.cesium-viewer-navigationContainer {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 300px;
    width: 128px;
}
.cesium-viewer-navigationContainer:hover .sm-compass-tilt{
    visibility: visible;
}
.cesium-viewer-navigationContainer:active .sm-compass-tilt{
    visibility: visible;
}
 
.sm-compass-tiltbar{
    cursor: pointer;
    position: absolute;
    width: 16px;
    height: 16px;
    /*left: 64px;
    top: 5px;*/
    background-image: url("../Images/Navigation/tiltbar.png");
    background-repeat: no-repeat;
    z-index: 10;
    visibility: hidden;
}
 
.cesium-viewer-navigationContainer:hover .sm-compass-tiltbar{
    visibility: visible;
}
 
.cesium-viewer-navigationContainer:active .sm-compass-tiltbar{
    visibility: visible;
}
 
.sm-compass-arrows{
    position: absolute;
    width: 128px;
    height: 128px;
    top: 0px;
    background-image: url("../Images/Navigation/compass_active.png");
    visibility: hidden;
}
 
.cesium-viewer-navigationContainer:hover .sm-compass-arrows{
    visibility: visible;
}
 
.cesium-viewer-navigationContainer:active .sm-compass-arrows{
    visibility: visible;
}
 
.arrows_e_active{
    cursor: pointer;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 52px;
    left: 68px;
    visibility: hidden;
}
 
.cesium-viewer-navigationContainer:hover .arrows_e_active{
    visibility: visible;
}
 
.cesium-viewer-navigationContainer:active .arrows_e_active{
    visibility: visible;
}
 
.arrows_e_active:active{
    background-image: url("../Images/Navigation/arrows_e_active.png");
}
 
.arrows_n_active{
    cursor: pointer;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 32px;
    left: 53px;
    visibility: hidden;
}
 
 
.arrows_n_active:active{
    background-image: url("../Images/Navigation/arrows_n_active.png");
}
 
.cesium-viewer-navigationContainer:hover .arrows_n_active{
    visibility: visible;
}
 
.cesium-viewer-navigationContainer:active .arrows_n_active{
    visibility: visible;
}
 
.arrows_s_active{
    cursor: pointer;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 74px;
    left: 53px;
    visibility: hidden;
}
 
.arrows_s_active:active{
    background-image: url("../Images/Navigation/arrows_s_active.png");
}
 
.cesium-viewer-navigationContainer:hover .arrows_s_active{
    visibility: visible;
}
 
.cesium-viewer-navigationContainer:active .arrows_s_active{
    visibility: visible;
}
 
.arrows_w_active{
    cursor: pointer;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 52px;
    left: 35px;
    visibility: hidden;
}
 
.arrows_w_active:active{
    background-image: url("../Images/Navigation/arrows_w_active.png");
}
 
.cesium-viewer-navigationContainer:hover .arrows_w_active{
    visibility: visible;
}
 
.cesium-viewer-navigationContainer:active .arrows_w_active{
    visibility: visible;
}
 
.sm-zoom{
    position: absolute;
    width: 30px;
    height: 150px;
    background-image: url("../Images/Navigation/zoom.png");
    top: 130px;
    right: 60px;
    visibility: hidden;
}
 
.cesium-viewer-navigationContainer:hover .sm-zoom{
    visibility: visible;
}
.cesium-viewer-navigationContainer:active .sm-zoom{
    visibility: visible;
}
 
.sm-zoomin{
    cursor: pointer;
    position: absolute;
    width: 32px;
    height: 32px;
}
.sm-zoomin:active{
    background-image: url("../Images/Navigation/zoom_active_in.png");
}
.sm-zoomout{
    cursor: pointer;
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: 0px;
}
.sm-zoomout:active{
    background-image: url("../Images/Navigation/zoom_active_out.png");
}
.sm-zoombar{
    cursor: pointer;
    position: absolute;
    width: 32px;
    height: 32px;
    top: 65px;
    background-image: url("../Images/Navigation/zoombar.png");
}