1
0
forked from Rowland/EG
EG/Cesium-1.132/packages/engine/Source/DataSources/KmlLookAt.js
2025-08-25 17:48:13 +08:00

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;