Newer
Older
casic-smartcity-well-front / static / Cesium / DataSources / KmlLookAt.js
[wangxitong] on 8 Jul 2021 314 bytes mars3d总览
/**
 * @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;