更新自畫點圖素指令參數。

interface UpdateByCommandParameter {
    entityName: string;
    layerName: string;
    absHeight?: boolean;
    color?: ov.ColorLike | ov.ColorLike[];
    epsg?: number;
    geo?: GeoJSON.Point | GeoJSON.Point[];
    maxDisplayDistance?: number;
    minDisplayDistance?: number;
    opacity?: number;
    pointOffset?: GeoJSON.Point;
    size?: number | number[];
    symbol?: null | string;
    symbolFixOnXYPlane?: boolean;
    symbolSize?: null | number[];
    worldSize?: boolean;
}

Hierarchy

Properties

entityName: string

自畫圖素名稱

layerName: string

自畫圖層名稱

absHeight?: boolean

是否為絕對高。

color?: ov.ColorLike | ov.ColorLike[]

點的顏色。

epsg?: number

幾何EPSG。

點幾何。

maxDisplayDistance?: number

最大顯示距離(離攝影機的距離)。

minDisplayDistance?: number

最小顯示距離(離攝影機的距離)。

opacity?: number

點的不透明度。

pointOffset?: GeoJSON.Point

點的位移量,單位受worldSize影響。

size?: number | number[]

點的大小,若有使用圖片則同時為圖片的寬高。

symbol?: null | string

圖片來源。

symbolFixOnXYPlane?: boolean

圖片是否鎖定在XY平面。

symbolSize?: null | number[]

圖片大小[寬,高],使用於圖片的寬高不相等時,將覆蓋size對圖片大小的設定。

worldSize?: boolean

點的單位是否為公尺,否則為Pixel。

Generated using TypeDoc