1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| import mapScreen from "./mapScreen";
| const mapDobule = {
| Init() {
| window.earthCtrl2 = new SmartEarth.EarthCtrl("cesiumContainer2", {
| printLog: false,
| });
| window.Viewer2 = earthCtrl2._Viewer;
| earthCtrl2.camera.stop(); //取消飞行状态
| // 获取左侧视角
|
| mapScreen.Init();
| },
|
| getViewerCmera() {},
| getViewer2Cmera() {},
| };
| export default mapDobule;
|
|