viewer_split.vue
6.86 KB
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
220
221
222
223
224
225
<!--
* 1、地图分屏效果
* @Author: jiangbotao
* @Date: 2019-12-03 22:52:56
* @LastEditors: jiangbotao
* @LastEditTime: 2019-12-10 11:01:35
* @FilePath: \superglobevue\src\components\viewer.vue
-->
<template>
<div>
<div id="cesiumContainer" v-bind:style="styleObject"></div>
<div id='loadingbar' class="spinner">
<div class="spinner-container container1">
<div class="circle1"></div>
<div class="circle2"></div>
<div class="circle3"></div>
<div class="circle4"></div>
</div>
<div class="spinner-container container2">
<div class="circle1"></div>
<div class="circle2"></div>
<div class="circle3"></div>
<div class="circle4"></div>
</div>
<div class="spinner-container container3">
<div class="circle1"></div>
<div class="circle2"></div>
<div class="circle3"></div>
<div class="circle4"></div>
</div>
</div>
<div id="toolbar" class="param-container tool-bar">
<div>
<button id="one" >无分屏</button>
<button id="two" >水平分屏</button>
</div>
</div>
<div id="split_up" style="display: none;"></div>
<div id="split_bottom" style="display: none;"></div>
<div id="split_left" style="display: none;"></div>
<div id="split_right" style="display: none;"></div>
<div id="split_vertical_trisection_left" style="display: none;"></div>
<div id="split_vertical_trisection_right" style="display: none;"></div>
</div>
</template>
<script>
import URL_CONFIG from "./../config/urlConfig.vue";
const Cesium = window.Cesium;
export default {
data: function() {
return {
styleObject: {
width: "100%",
position: "absolute",
top: "0px",
bottom: "0px",
left: "0px",
backgroundColor: "#000000"
},
smviewer: {}
};
},
mounted: function() {
this.viewer = new Cesium.Viewer("cesiumContainer", {});
// 隐藏logo
$(".cesium-widget-credits")[0].style.visibility = "hidden";
// 隐藏导航工具
// $(".cesium-viewer-navigationContainer")[0].style.visibility="hidden";
// 添加OSM地图
let osm = Cesium.createOpenStreetMapImageryProvider({
url: "https://tile-a.openstreetmap.fr/hot",
fileExtension:"png"
});
this.viewer.imageryLayers.addImageryProvider(osm);
var scene = this.viewer.scene;
var widget = this.viewer.cesiumWidget;
try {
var groundPromise = scene.addS3MTilesLayerByScp(URL_CONFIG.SCP_CBD_GROUND1, {
name: 'ground'
});
var ground2Promise = scene.addS3MTilesLayerByScp(URL_CONFIG.SCP_CBD_GROUND2, {
name: 'ground2'
});
var buildPromise = scene.addS3MTilesLayerByScp(URL_CONFIG.SCP_CBD_BUILD, {
name: 'build'
});
// 添加倾斜摄影模型图层
Cesium.when.all([groundPromise, ground2Promise, buildPromise], function(layers) {
var build = scene.layers.find("build");
var ground = scene.layers.find("ground");
var ground2 = scene.layers.find("ground2");
// console.log(build);
// 图层加载完成,设置相机位置
scene.camera.setView({
destination: Cesium.Cartesian3.fromDegrees(116.4563, 39.8969, 553),
orientation: {
heading: 5.901089214916513,
pitch: -0.40668579780875524,
roll: 6.281842456812987
}
});
$("#one").on("click", function(){
$("#split_up").css("display", "none");
$("#split_bottom").css("display", "none");
$("#split_left").css("display", "none");
$("#split_right").css("display", "none");
$("#split_vertical_trisection_left").css("display", "none");
$("#split_vertical_trisection_right").css("display", "none");
$('#pannel').hide();
scene.multiViewportMode = Cesium.MultiViewportMode["NONE"];
});
$("#two").on("click", function(){
$("#split_up").css("display", "block");
$("#split_bottom").css("display", "block");
$("#split_left").css("display", "none");
$("#split_right").css("display", "none");
$("#split_vertical_trisection_left").css("display", "none");
$("#split_vertical_trisection_right").css("display", "none");
$('#pannel').show();
$('#b_one,#b_two,#g_one,#g_two').show();
$('#b_three,#g_three,#b_four,#g_four').hide();
scene.multiViewportMode = Cesium.MultiViewportMode["HORIZONTAL"];
console.log(ground2);
ground2.setVisibleInViewport(1, false);
ground.setVisibleInViewport(0, false);
});
}, function() {
var title = '加载SCP失败,请检查网络连接状态或者url地址是否正确?';
widget.showErrorPanel(title, undefined, e);
});
} catch (e) {
if (widget._showRenderLoopErrors) {
var title = '渲染时发生错误,已停止渲染。';
widget.showErrorPanel(title, undefined, e);
}
}
$("#loadingbar").remove();
}
};
</script>
<style>
.sm-compass {
pointer-events: auto;
position: absolute;
right: 10px;
top: 10px;
width: 128px;
height: 128px;
overflow: hidden;
}
.sm-zoom {
top: 130px;
}
label {
display: inline-block;
margin-right: 1rem;
}
label>input,
label>span {
display: inline-block;
vertical-align: middle;
}
#split_up {
position: absolute;
background-color: white;
left: 50%;
bottom: 50%;
width: 2px;
height: 50%;
-webkit-transform: translate(-50%, 0);
}
#split_bottom {
position: absolute;
background-color: white;
left: 50%;
top: 50%;
width: 2px;
height: 50%;
-webkit-transform: translate(-50%, 0);
}
#split_left {
position: absolute;
background-color: white;
right: 50%;
bottom: 50%;
height: 2px;
width: 50%;
-webkit-transform: translate(0, -50%);
}
#split_right {
position: absolute;
background-color: white;
left: 50%;
bottom: 50%;
height: 2px;
width: 50%;
-webkit-transform: translate(0, -50%);
}
#split_vertical_trisection_left {
position: absolute;
background-color: white;
left: 33.33%;
top: 0;
height: 100%;
width: 2px;
}
#split_vertical_trisection_right {
position: absolute;
background-color: white;
right: 33.33%;
top: 0;
height: 100%;
width: 2px;
}
</style>