DSDSWeb/static/js/Cesium-1.53/Source/DataSources/KmlLookAt.js

17 lines
405 B
JavaScript
Raw Normal View History

2024-07-11 18:02:47 +08:00
define([], function() {
'use strict';
/**
* @alias KmlLookAt
* @constructor
*
* @param {Cartesian3} position camera position
* @param {HeadingPitchRange} headingPitchRange camera orientation
*/
function KmlLookAt(position, headingPitchRange) {
this.position = position;
this.headingPitchRange = headingPitchRange;
}
return KmlLookAt;
});