UNPKG

@cesium/engine

Version:

CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.

13 lines (12 loc) 314 B
/** * @alias KmlLookAt * @constructor * * @param {Cartesian3} position camera position * @param {HeadingPitchRange} headingPitchRange camera orientation */ function KmlLookAt(position, headingPitchRange) { this.position = position; this.headingPitchRange = headingPitchRange; } export default KmlLookAt;