新增自畫文字圖素指令參數。

interface AddTextEntityCommandParameter {
    entityName: string;
    geo: GeoJSON.Point | GeoJSON.Point[];
    layerName: string;
    absHeight?: boolean;
    alignment?: TEXT_ALIGN;
    borderColor?: ov.ColorLike;
    borderSize?: number;
    color?: ov.Color;
    epsg?: number;
    font?: null | string;
    fontSize?: number;
    offset?: GeoJSON.Point | GeoJSON.Point[];
    size?: number;
    text?: null | string;
    worldSize?: boolean;
}

Hierarchy

Properties

entityName: string

自畫圖素名稱

點幾何。

layerName: string

自畫圖層名稱

absHeight?: boolean

是否為絕對高。

alignment?: TEXT_ALIGN

標籤對齊方式

borderColor?: ov.ColorLike

文字邊框顏色。

borderSize?: number

文字邊框大小。

color?: ov.Color

文字顏色。

epsg?: number

幾何EPSG。

font?: null | string

文字字體。

fontSize?: number

文字字體大小。

offset?: GeoJSON.Point | GeoJSON.Point[]

位移量。

size?: number

文字大小,世界座標時為公尺大小,否則為pixel大小。

text?: null | string

文字。

worldSize?: boolean

是否為世界座標

Generated using TypeDoc