SDK JS
    Preparing search index...

    Interface GeodeticInstance

    One user-placed model instance: a geographic position + an optional per-instance transform. The shape Esri ObjectSymbol3DLayer (per-feature pos + heading + visual-variable size) and a user's "models on points" library both map onto.

    interface GeodeticInstance {
        heading?: 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.

    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.