SourceTermAnalysisSystem_vue/node_modules/@cesium/engine/Source/DataSources/KmlLookAt.js
2026-05-15 10:22:44 +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;