PilotGaea 3D O'view
    正在準備搜尋索引...

    介面 GotoAndFocusOptions

    gotoAndFocus參數。

    interface GotoAndFocusOptions {
        focusPoint: PointLike3D;
        distance?: number;
        allowUpdateFocusPoint?: boolean;
        maxPolarAngle?: number;
        minPolarAngle?: number;
        maxDistance?: number;
        minDistance?: number;
        polarAngle?: number;
        azimuthAngle?: number;
        timeout?: number;
        epsg?: number;
        onFinish?: () => void;
        onAbort?: () => void;
    }
    索引

    屬性

    focusPoint: PointLike3D

    要飛到並鎖定中心點。

    distance?: number

    離中心點的距離。

    allowUpdateFocusPoint?: boolean

    是否允許使用者透過滑鼠操作異動中心點。

    maxPolarAngle?: number

    攝影機相對中心點,與天頂夾角的上限(度)。

    minPolarAngle?: number

    攝影機相對中心點,與天頂夾角的下限(度)。

    maxDistance?: number

    攝影機可以離中心點的最遠距離(公尺)。

    minDistance?: number

    攝影機可以離中心點的最近距離(公尺)。

    polarAngle?: number

    移動完畢後,攝影機相對中心點的天頂角。

    azimuthAngle?: number

    移動完畢後,攝影機相對中心點的方位角。

    timeout?: number

    完成移動的總時間(毫秒)。

    epsg?: number

    指定focusPoint參數的EPSG。

    onFinish?: () => void

    移動完成後執行的回呼。

    onAbort?: () => void

    移動被中斷執行的回呼。