Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

KmlLookAt.js 362B

před 5 roky
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;