Skip to content

SceneViewHandle

SceneViewHandle = object

Defined in: src/ExpoArcgis.types.ts:469

Imperative handle exposed by <SceneView> via ref.

getElevation(point): Promise<number | null>

Defined in: src/ExpoArcgis.types.ts:486

The terrain elevation (in meters) on the scene’s base surface at a geographic point, or null if no surface/elevation is available there.

Point

Promise<number | null>


identify(screenPoint, options?): Promise<IdentifyResult[]>

Defined in: src/ExpoArcgis.types.ts:471

Identifies the features under a screen point (3D; in points, e.g. from onTap’s screenPoint).

number

number

number

number

Promise<IdentifyResult[]>


identifyPopups(screenPoint, options?): Promise<PopupResult[]>

Defined in: src/ExpoArcgis.types.ts:476

Identifies and evaluates popups under a screen point (3D); returns each popup’s title + fields.

number

number

number

number

Promise<PopupResult[]>


retryLoad(): Promise<void>

Defined in: src/ExpoArcgis.types.ts:481

Retries loading the scene after a failure (e.g. a network outage). Re-fires onSceneLoaded/onSceneLoadError.

Promise<void>