Interface AddCustomTilePolygonProperty

新增自畫疊加多邊形圖素參數。

interface AddCustomTilePolygonProperty {
    geo: GeoPolygon;
    epsg?: number;
    fill?: boolean;
    fillStyle?: string;
    lineCap?: "butt" | "round" | "square";
    lineDash?: string;
    lineJoin?: "round" | "miter" | "bevel";
    lineWidth?: number;
    stroke?: boolean;
    strokeStyle?: string;
}

Hierarchy

Properties

幾何。

epsg?: number

幾何的EPSG。

fill?: boolean

是否要填充顏色。

Default Value

true
fillStyle?: string

填充的樣式。

Default Value

"#FFF"
lineCap?: "butt" | "round" | "square"

線終端的樣式。

Default Value

"butt"
lineDash?: string

虛線樣式,空陣列為實線。

Default Value

[]
lineJoin?: "round" | "miter" | "bevel"

線閉合的樣式。

Default Value

"miter"
lineWidth?: number

線寬。

Default Value

1
stroke?: boolean

是否要畫線。

Default Value

true
strokeStyle?: string

筆刷的樣式。

Default Value

"#000"

Generated using TypeDoc