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
import * as mars3d from "mars3d"
 
export let map // mars3d.Map三维地图对象
let snowEffect
let snowCover
 
// 需要覆盖config.json中地图属性参数(当前示例框架中自动处理合并)
export const mapOptions = {
  scene: {
    center: { lat: 33.591015, lng: 119.032697, alt: 73, heading: 343, pitch: -21 },
    globe: {
      depthTestAgainstTerrain: true
    }
  }
}
 
/**
 * 初始化地图业务,生命周期钩子函数(必须)
 * 框架在地图初始化完成后自动调用该函数
 * @param {mars3d.Map} mapInstance 地图对象
 * @returns {void} 无
 */
export function onMounted(mapInstance) {
  map = mapInstance // 记录map
 
  // 雾化效果
  map.scene.fog.density = 0.001
  map.scene.fog.minimumBrightness = 0.8
 
  // 添加参考三维模型
  const tiles3dLayer = new mars3d.layer.TilesetLayer({
    url: "//data.mars3d.cn/3dtiles/qx-simiao/tileset.json",
    position: { alt: 80.6 },
    maximumScreenSpaceError: 1,
    maximumMemoryUsage: 1024,
    dynamicScreenSpaceError: true,
    cullWithChildrenBounds: false
  })
  map.addLayer(tiles3dLayer)
 
  snowEffect = new mars3d.effect.SnowEffect({
    speed: 20
  })
  map.addEffect(snowEffect)
 
  snowCover = new mars3d.effect.SnowCoverEffect({
    maxHeight: 8000, // 大于此高度后不显示
    alpha: 0.6
  })
  map.addEffect(snowCover)
}
 
/**
 * 释放当前地图业务的生命周期函数
 * @returns {void} 无
 */
export function onUnmounted() {
  map = null
}
 
// 是否开启下雪效果
export function setSnow(val) {
  snowEffect.enabled = val
}
 
// 速度
export function setSpeed(value) {
  snowEffect.speed = value
}
 
// 是否开启积雪效果
export function setCover(val) {
  snowCover.enabled = val
}
 
// 积雪厚度
export function setAlpha(value) {
  snowCover.alpha = value
}