-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelfSpin.ts
49 lines (42 loc) · 1.09 KB
/
SelfSpin.ts
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
import { Cartesian3, Viewer } from "cesium";
import FeatureBase from "../FeatureBase";
export default class SelfSpin extends FeatureBase {
/**
* 自转执行方法(内部使用)
*
* @private
* @memberof SelfSpin
*/
private declare rotateAction: () => void;
constructor(viewer: Viewer) {
super(viewer);
}
/**
* 地球自转
*
* @param {number} rotateSpeed
* @memberof CesiumDataStore
*/
start(rotateSpeed: number = 0.018) {
this.rotateAction = () => {
this.viewer.scene.camera.rotate(Cartesian3.UNIT_Z, -(.1) * rotateSpeed);
};
this.stop(); //防止多次添加事件
this.viewer.clock.onTick.addEventListener(this.rotateAction);
}
/**
* 移除地球自转
*
* @memberof CesiumDataStore
*/
stop() {
try { //clock maybe throw error in viewer
this.viewer.clock.onTick.removeEventListener(this.rotateAction);
} catch (error) {
//console.error(error)
}
}
clear(): void {
this.stop();
}
}