PilotGaea 3D O'view
    正在準備搜尋索引...

    介面 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;
    }

    層級 (查看層級一覽)

    索引

    屬性

    幾何。

    epsg?: number

    幾何的EPSG。

    fill?: boolean

    是否要填充顏色。

    true
    
    fillStyle?: string

    填充的樣式。

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

    線終端的樣式。

    "butt"
    
    lineDash?: string

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

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

    線閉合的樣式。

    "miter"
    
    lineWidth?: number

    線寬。

    1
    
    stroke?: boolean

    是否要畫線。

    true
    
    strokeStyle?: string

    筆刷的樣式。

    "#000"