SitMap Controller provide api for SitMap object

interface SitMap {
    create(ObjectId: string): void;
    getPercentage(theId: string): number;
    setAxes(theId: string, theAxes: ObjectAxes): void;
    setColors(theId: string, theColors: string[]): void;
    setDistances(theId: string, theDistances: number[]): void;
    setReferenceObject(theId: string, theObject: string): void;
    setSeatingObject(theId: string, theObject: string): void;
    setViewOffset(theId: string, theOffset: WasmVector2d): void;
    setViewSize(theId: string, theSize: WasmVector2d): void;
}

Methods

  • Create SitMap object

    Parameters

    • ObjectId: string

    Returns void

  • Get proportion of all distances occur except the first of the total sitmap coverage.

    Parameters

    • theId: string

    Returns number

  • Set axes of view

    Parameters

    Returns void

  • Set colors values

    Parameters

    • theId: string
    • theColors: string[]

    Returns void

  • Set distances values

    Parameters

    • theId: string
    • theDistances: number[]

    Returns void

  • Set reference Object

    Parameters

    • theId: string
    • theObject: string

    Returns void

  • Set seating Object

    Parameters

    • theId: string
    • theObject: string

    Returns void

  • Set view offset

    Parameters

    Returns void

  • Set view size

    Parameters

    Returns void