選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

KmlLookAt.js 362B

5年前
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;