新增AIS軌跡實體參數。

interface AddAISEntityParameter {
    source: string | File;
    alt?: string;
    callback?: ((entity) => void);
    color?: ov.Color;
    heading?: string;
    lat?: string;
    lon?: string;
    onGround?: boolean;
    size?: number;
    target?: PointTargetParameter | GLTFTargetParameter;
    timeStamp?: string;
    title?: string;
    velocity?: string;
}

Properties

source: string | File

AIS的來源或檔案或CSV物件。

alt?: string

高度欄位名。

Default Value

"ALT"
callback?: ((entity) => void)

Type declaration

    • (entity): void
    • 完成回呼。

      Parameters

      • entity: string | TrackEntity

        軌跡模組圖素或錯誤訊息。

      Returns void

color?: ov.Color

船隻的顏色。

Default Value

new ov.Color("#FF0000")
heading?: string

朝向欄位名。

Default Value

"HEADING"
lat?: string

緯度欄位名。

Default Value

"LAT"
lon?: string

經度欄位名。

Default Value

"LON"
onGround?: boolean

是否貼地。

Default Value

false
size?: number

船隻的大小。

Default Value

10

目標參數。

timeStamp?: string

時間欄位名。

Default Value

"TIMESTAMP"
title?: string

標題欄位名。

Default Value

"SHIP_ID"
velocity?: string

速度欄位名。

Default Value

"SPEED"

Generated using TypeDoc