Interface PositionTimeOutProperty

攝影機位置參數。

interface PositionTimeOutProperty {
    camera: {
        pos: Geo3DPoint;
        up: Geo3DPoint;
        v: Geo3DPoint;
    };
    async?: boolean;
    easing?: "LINEAR" | "IN_QUAD" | "OUT_QUAD" | "IN_OUT_QUAD" | "IN_CUBIC" | "OUT_CUBIC" | "IN_OUT_CUBIC" | "IN_QUART" | "OUT_QUART" | "IN_OUT_QUART" | "IN_QUINT" | "OUT_QUINT" | "IN_OUT_QUINT";
    posTimeOut?: number;
    rotTimeOut?: number;
}

Properties

camera: {
    pos: Geo3DPoint;
    up: Geo3DPoint;
    v: Geo3DPoint;
}

攝影機。

Type declaration

async?: boolean

是否非同步。

Default Value

false
easing?: "LINEAR" | "IN_QUAD" | "OUT_QUAD" | "IN_OUT_QUAD" | "IN_CUBIC" | "OUT_CUBIC" | "IN_OUT_CUBIC" | "IN_QUART" | "OUT_QUART" | "IN_OUT_QUART" | "IN_QUINT" | "OUT_QUINT" | "IN_OUT_QUINT"

緩動函數。

Default Value

"LINEAR"
posTimeOut?: number

移動時間(毫秒)。

Default Value

500
rotTimeOut?: number

旋轉時間(毫秒)。

Default Value

500

Generated using TypeDoc