Type Alias TShapeUpdateState

TShapeUpdateState: {
    altitude?: number;
    bevel?: {
        enabled?: boolean;
        offset?: number;
        segments?: number;
        size?: number;
        thickness?: number;
    };
    color?: string;
    height?: number;
    interactive?: boolean;
    opacity?: number;
    type?: "shape";
    visible?: boolean;
}

Type declaration

  • Optionalaltitude?: number

    The altitude of the shape.

    0
    
  • Optionalbevel?: {
        enabled?: boolean;
        offset?: number;
        segments?: number;
        size?: number;
        thickness?: number;
    }

    Bevel configuration for extruded shapes.

  • Optionalcolor?: string

    The color of the shape.

    #ffffff
    
  • Optionalheight?: number

    The height of the shape. Height cannot be updated at this time

  • Optionalinteractive?: boolean

    Whether the shape is interactive.

    false
    
  • Optionalopacity?: number

    The opacity of the shape.

    1
    
  • Optionaltype?: "shape"

    The type of the shape.

  • Optionalvisible?: boolean

    Whether Shape is visible

    true