On this page

Interface SplatModelUpdateEvent

Event fired when a SplatModel position or elevation is updated.

interface SplatModelUpdateEvent {
    altitude: number;
    position: LngLat;
    type: "update";
}

Hierarchy (View Summary)

  • Event<"update">
    • SplatModelUpdateEvent
Index

Properties

altitude: number

New altitude of the SplatModel in meters.

position: LngLat

New center position of the SplatModel.

type: "update"

The type of the event.

Was this helpful?

GeoSplats SDK
Reference
SplatModelUpdateEvent