Skip to content
Guides API

SceneViewHandle

SceneViewHandle = object

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

Imperative handle exposed by <SceneView> via ref.

getElevation(point): Promise<number | null>

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

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:477

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:482

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:487

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

Promise<void>