KmlLookAt.js 314 B

123456789101112
  1. /**
  2. * @alias KmlLookAt
  3. * @constructor
  4. *
  5. * @param {Cartesian3} position camera position
  6. * @param {HeadingPitchRange} headingPitchRange camera orientation
  7. */
  8. function KmlLookAt(position, headingPitchRange) {
  9. this.position = position;
  10. this.headingPitchRange = headingPitchRange;
  11. }
  12. export default KmlLookAt;