cesium-spatial
    Preparing search index...

    Interface CellStyle

    Per-cell visual overrides. Anything omitted falls back to the layer default.

    interface CellStyle {
        color?: Color;
        extrudedHeight?: number;
        height?: number;
        outlineColor?: Color;
        show?: boolean;
    }
    Index
    color?: Color

    Fill color. Translucent colors require the layer's translucent option.

    extrudedHeight?: number

    Top height for extruded (prism) cells, in meters. Ignored when clamped to ground.

    height?: number

    Base height above the ellipsoid, in meters. Ignored when clamped to ground.

    outlineColor?: Color

    Outline color. Only used when the layer was created with outlines: true.

    show?: boolean

    Set false to hide the cell without rebuilding the layer.