cesium/packages/engine/Source/DataSources/KmlLookAt.js

13 lines
314 B
JavaScript

/**
* @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;