SDK JS
    Preparing search index...

    Interface MultiModelInstance

    A GeodeticInstance (position + optional scale/heading) plus which model in the library to draw.

    interface MultiModelInstance {
        heading?: number;
        modelIndex?: number;
        position: readonly [number, number, number];
        scale?: number | readonly [number, number, number];
    }

    Hierarchy (View Summary)

    Index

    Properties

    heading?: number

    Heading (degrees CW from north) about the local up axis. Default 0.

    modelIndex?: number

    Index into models[] of the model to draw at this point (default 0; out-of-range → model 0).

    position: readonly [number, number, number]

    [lng°, lat°, height_m].

    scale?: number | readonly [number, number, number]

    Uniform scale, or per-axis [x, y, z]. Default 1.