SceneViewHandle
SceneViewHandle =
object
Defined in: src/ExpoArcgis.types.ts:469
Imperative handle exposed by <SceneView> via ref.
Methods
Section titled “Methods”getElevation()
Section titled “getElevation()”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.
Parameters
Section titled “Parameters”Returns
Section titled “Returns”Promise<number | null>
identify()
Section titled “identify()”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).
Parameters
Section titled “Parameters”screenPoint
Section titled “screenPoint”number
number
options?
Section titled “options?”maxResults?
Section titled “maxResults?”number
tolerance?
Section titled “tolerance?”number
Returns
Section titled “Returns”Promise<IdentifyResult[]>
identifyPopups()
Section titled “identifyPopups()”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.
Parameters
Section titled “Parameters”screenPoint
Section titled “screenPoint”number
number
options?
Section titled “options?”maxResults?
Section titled “maxResults?”number
tolerance?
Section titled “tolerance?”number
Returns
Section titled “Returns”Promise<PopupResult[]>
retryLoad()
Section titled “retryLoad()”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.
Returns
Section titled “Returns”Promise<void>