forked from CesiumGS/cesium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreateCamera.js
40 lines (33 loc) · 1.39 KB
/
createCamera.js
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
import { Cartesian3 } from '../Source/Cesium.js';
import { defaultValue } from '../Source/Cesium.js';
import { defined } from '../Source/Cesium.js';
import { GeographicProjection } from '../Source/Cesium.js';
import { Matrix4 } from '../Source/Cesium.js';
import { Camera } from '../Source/Cesium.js';
function MockScene(canvas) {
canvas = defaultValue(canvas, {
clientWidth: 512,
clientHeight: 384
});
this.canvas = canvas;
this.drawingBufferWidth = canvas.clientWidth * 2;
this.drawingBufferHeight = canvas.clientHeight * 2;
this.mapProjection = new GeographicProjection();
}
function createCamera(options) {
options = defaultValue(options, defaultValue.EMPTY_OBJECT);
var scene = new MockScene(options.canvas);
var camera = new Camera(scene);
camera.frustum.near = defaultValue(options.near, 0.01);
camera.frustum.far = defaultValue(options.far, 10.0);
var offset = defaultValue(options.offset, new Cartesian3(-1.0, 0.0, 0.0));
if (defined(options.target)) {
camera.lookAt(options.target, offset);
} else if (defined(options.transform)) {
camera.lookAtTransform(options.transform, offset);
} else {
camera.lookAtTransform(Matrix4.IDENTITY, offset);
}
return camera;
}
export default createCamera;