Skip to content

SceneProps

SceneProps = object

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

Props for the <Scene> model component — mirror the native ArcGISScene/Scene.

optional basemap?: BasemapStyle

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

Basemap style. Defaults to arcGISImagery (3D-appropriate).


optional basemapLanguage?: string

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

Language for basemap place-name labels. Only applies when basemap is a built-in style string. Special values: "global" — English worldwide; "local" — local place names; "default" — SDK default; "applicationLocale" — device locale. Any other value is treated as a BCP-47 language tag (e.g. "fr", "ar", "zh-Hans").


optional basemapWorldview?: string

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

Worldview code for disputed-boundary rendering. Only applies when basemap is a built-in style. Known codes: "CN", "IN", "IL", "JP", "MA", "PK", "KR", "AE", "US", "VN".


optional bookmarks?: object[]

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

Named saved viewpoints stored on the scene. Replaces the scene’s bookmark list each time the prop changes. Each entry creates a native Bookmark(name, Viewpoint(latitude, longitude, scale)). Navigation to a bookmark is done separately via the <SceneView camera> prop.

name: string

viewpoint: object

latitude: number

longitude: number

scale: number


optional camera?: Camera

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

3D camera for the initial view (preferred over initialViewpoint for scenes).


optional initialViewpoint?: Viewpoint

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

Center + scale applied when the scene first loads.


optional mobileScenePackagePath?: string

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

Local path to a mobile scene package (.mspk); its first scene is shown when loaded.


optional portalItem?: PortalItem

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

Load the scene from an ArcGIS web scene. Construction-only (set once; remount to change).


optional surface?: Surface

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

Ground elevation surface (terrain).