Interface AddCustomTileTextProperty

新增自畫疊加標籤文字圖素參數。

interface AddCustomTileTextProperty {
    geo: GeoPoint;
    text: string;
    epsg?: number;
    fill?: boolean;
    fillStyle?: string;
    font?: string;
    lineWidth?: number;
    lngLatScale?: number;
    stroke?: boolean;
    strokeStyle?: string;
    visibleLevel?: number;
}

Hierarchy

Properties

幾何。

text: string

標籤文字。

epsg?: number

幾何的EPSG。

fill?: boolean

是否要填充顏色。

Default Value

true
fillStyle?: string

填充的樣式。

Default Value

"FFF"
font?: string

文字的字形或大小。

Default Value

"10x sans-serif"
lineWidth?: number

線寬。

Default Value

0.5
lngLatScale?: number

每像素比經緯的比例,若為負值則使用圖面大小。

Default Value

-1
stroke?: boolean

是否要畫線。

Default Value

false
strokeStyle?: string

筆刷的樣式。

Default Value

"#000"
visibleLevel?: number

最小可視層級。

Default Value

0

Generated using TypeDoc