Interface AddCustomSurfaceCircleProperty

新增自畫表面圓參數。

interface AddCustomSurfaceCircleProperty {
    circle: {
        center: Geo3DPoint;
        radius?: number;
    };
    color?: `#${string}`;
    detail?: number;
    opacity?: number;
}

Hierarchy

Properties

circle: {
    center: Geo3DPoint;
    radius?: number;
}

圓參數。

Type declaration

  • center: Geo3DPoint

    圓心幾何。

  • Optional radius?: number

    圓的半徑,單位公尺。

    Default Value

    1
    
color?: `#${string}`

顏色。

Default Value

"#0000FF"
detail?: number

圓的邊數。

Default Value

120
opacity?: number

不透明度。

Default Value

1

Generated using TypeDoc