fuchengshen
2022-07-09 3a25c05b5ab837714f30469cdcb1e2a77d8d7f6c
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
import * as mars3d from "mars3d"
 
export let map // mars3d.Map三维地图对象
 
let currSkyBox // 当前生效的Skybox
let defaultSkybox // cesium自带的Skybox
 
const qingtianSkybox = new mars3d.GroundSkyBox({
  sources: {
    positiveX: "img/skybox_near/qingtian/rightav9.jpg",
    negativeX: "img/skybox_near/qingtian/leftav9.jpg",
    positiveY: "img/skybox_near/qingtian/frontav9.jpg",
    negativeY: "img/skybox_near/qingtian/backav9.jpg",
    positiveZ: "img/skybox_near/qingtian/topav9.jpg",
    negativeZ: "img/skybox_near/qingtian/bottomav9.jpg"
  }
})
 
const wanxiaSkybox = new mars3d.GroundSkyBox({
  sources: {
    positiveX: "img/skybox_near/wanxia/SunSetRight.png",
    negativeX: "img/skybox_near/wanxia/SunSetLeft.png",
    positiveY: "img/skybox_near/wanxia/SunSetFront.png",
    negativeY: "img/skybox_near/wanxia/SunSetBack.png",
    positiveZ: "img/skybox_near/wanxia/SunSetUp.png",
    negativeZ: "img/skybox_near/wanxia/SunSetDown.png"
  }
})
 
const lantianSkybox = new mars3d.GroundSkyBox({
  sources: {
    positiveX: "img/skybox_near/lantian/Right.jpg",
    negativeX: "img/skybox_near/lantian/Left.jpg",
    positiveY: "img/skybox_near/lantian/Front.jpg",
    negativeY: "img/skybox_near/lantian/Back.jpg",
    positiveZ: "img/skybox_near/lantian/Up.jpg",
    negativeZ: "img/skybox_near/lantian/Down.jpg"
  }
})
 
// 需要覆盖config.json中地图属性参数(当前示例框架中自动处理合并)
export const mapOptions = {
  scene: {
    center: { lat: 31.830035, lng: 117.159801, alt: 409, heading: 41, pitch: 0 }
  }
}
 
/**
 * 初始化地图业务,生命周期钩子函数(必须)
 * 框架在地图初始化完成后自动调用该函数
 * @param {mars3d.Map} mapInstance 地图对象
 * @returns {void} 无
 */
export function onMounted(mapInstance) {
  map = mapInstance // 记录map
 
  defaultSkybox = map.scene.skyBox
  currSkyBox = qingtianSkybox
 
  map.on(mars3d.EventType.postRender, function () {
    const position = map.camera.position
    const height = Cesium.Cartographic.fromCartesian(position).height
    if (height < 230000) {
      if (currSkyBox) {
        map.scene.skyBox = currSkyBox
      }
      map.scene.skyAtmosphere.show = false
    } else {
      if (defaultSkybox) {
        map.scene.skyBox = defaultSkybox
      }
      map.scene.skyAtmosphere.show = true
    }
  })
}
 
/**
 * 释放当前地图业务的生命周期函数
 * @returns {void} 无
 */
export function onUnmounted() {
  map = null
}
 
export function sunny() {
  currSkyBox = qingtianSkybox
}
 
export function sunsetGlow() {
  currSkyBox = wanxiaSkybox
}
 
export function blueSky() {
  currSkyBox = lantianSkybox
}
 
export function defaultSky() {
  currSkyBox = defaultSkybox
}