SceneViewProps
SceneViewProps =
object
Defined in: src/ExpoArcgis.types.ts:2503
Props for the <SceneView> host component.
Properties
Section titled “Properties”atmosphereEffect?
Section titled “atmosphereEffect?”
optionalatmosphereEffect?:AtmosphereEffect
Defined in: src/ExpoArcgis.types.ts:2523
Atmosphere rendering. Defaults to horizonOnly.
camera?
Section titled “camera?”
optionalcamera?:Camera
Defined in: src/ExpoArcgis.types.ts:2506
Animates the view to this 3D camera whenever the value changes (runtime camera control).
cameraController?
Section titled “cameraController?”
optionalcameraController?:CameraController|null
Defined in: src/ExpoArcgis.types.ts:2512
Swaps the scene’s camera-control mode. Omit (or pass null) to use the SDK default.
{ type: 'orbitLocation', target, distance }— orbit around a fixed point.{ type: 'globe' }— free globe navigation.
optionalgrid?:GridConfig|null
Defined in: src/ExpoArcgis.types.ts:2514
Coordinate-grid overlay (MGRS / UTM / USNG / latitude-longitude). null / omitted = none.
onSceneLoaded?
Section titled “onSceneLoaded?”
optionalonSceneLoaded?: (event) =>void
Defined in: src/ExpoArcgis.types.ts:2533
Called once the scene has finished loading successfully.
Parameters
Section titled “Parameters”nativeEvent
Section titled “nativeEvent”Returns
Section titled “Returns”void
onSceneLoadError?
Section titled “onSceneLoadError?”
optionalonSceneLoadError?: (event) =>void
Defined in: src/ExpoArcgis.types.ts:2535
Called if the scene fails to load.
Parameters
Section titled “Parameters”nativeEvent
Section titled “nativeEvent”Returns
Section titled “Returns”void
onTap?
Section titled “onTap?”
optionalonTap?: (event) =>void
Defined in: src/ExpoArcgis.types.ts:2537
Called when the user taps the scene.
Parameters
Section titled “Parameters”nativeEvent
Section titled “nativeEvent”Returns
Section titled “Returns”void
orbitGraphic?
Section titled “orbitGraphic?”
optionalorbitGraphic?:GraphicRef|null
Defined in: src/ExpoArcgis.types.ts:2519
The graphic to orbit when cameraController is { type: 'orbitGeoElement' } — the camera
follows this <Graphic> as it moves. Pass the ref obtained from <Graphic ref>.
style?
Section titled “style?”
optionalstyle?:StyleProp<ViewStyle>
Defined in: src/ExpoArcgis.types.ts:2504
sunLighting?
Section titled “sunLighting?”
optionalsunLighting?:SunLighting
Defined in: src/ExpoArcgis.types.ts:2521
Sun lighting mode (shadows). Defaults to off.
sunTime?
Section titled “sunTime?”
optionalsunTime?:number
Defined in: src/ExpoArcgis.types.ts:2525
Sun position, as epoch milliseconds (affects shadow direction).
timeExtent?
Section titled “timeExtent?”
optionaltimeExtent?: {endTime:number;startTime:number; } |null
Defined in: src/ExpoArcgis.types.ts:2531
Filters time-aware layers to this time window. Both values are epoch milliseconds (UTC).
Pass null / omit to show all time steps (no filter). Maps to GeoView.timeExtent /
SceneView(timeExtent:) on both platforms.