Skip to content

Maps and scenes provide interactive displays of geographic data that enable you to visualize and explore patterns, answer questions, and share insight. While the programming patterns are similar and many of the classes you work with are the same, maps are designed for working with geographic data in two dimensions (2D) and scenes in three dimensions (3D).

With scenes, you can use a global or local scene to display your data, such as airline flight patterns, campus facilities, or underground utilities. Global scenes are spatially referenced using a geographic coordinate system and are used to display and work with world scale data. Local scenes, by contrast, are spatially referenced using a projected coordinate system and are used to display localized data drawn on a flat plane.

Use one of the following scene views to visualize and interact with 3D data in your app:

How a scene works

A scene works together with ArcGISSceneView (global scene) or ArcGISLocalSceneView (local scene) to display geographic content in three dimensions. A scene contains a collection of layers including multiple data layers from online or local sources, a basemap layer that gives geographic context, and a base surface containing elevation data. A scene can also contain datasets that enable searches for addresses or place names, networks for solving routes, and non-spatial tables.

For offline workflows (when you don't have network connectivity), you can open a scene stored in a mobile scene package. You can create mobile scene packages using ArcGIS Pro, share them using your ArcGIS organization, or distribute directly by copying to a device. See Offline maps, scenes, and data for more information about implementing offline workflows in your app.

Scene

A scene contains a collection of layers. Two dimensional layers are displayed in the order in which they are added, while three dimensional layers are displayed using the layer's elevation information. You can use the scene to change the display order of two dimensional layers as well as to control which layers are visible, and expose this functionality with user interface controls such as lists, check boxes, or switches. Scenes extend the concept of a basemap by introducing a base surface that contains a collection of elevation sources. Layers can be draped on top of the surface, positioned relative to the surface or displayed based on their absolute values.

You can instantiate a new ArcGISScene by creating a new scene and building it entirely with code. With this approach, you typically first add a basemap layer, set a base surface on which layers are draped or relative layers are offset, and then one or more data layers.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// Authenticate your application using a supported method:
// - API key authentication
// - User authentication

// Create a new ArcGISScene with the topographic basemap style.
final scene = ArcGISScene.withBasemapStyle(BasemapStyle.arcGISTopographic);

// Use the world 3D terrain service, which provides global elevation to use
// as a ground surface.
const elevationUrl =
    'https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer';

// Create an elevation source using the global elevation service.
final source = ArcGISTiledElevationSource.withUri(Uri.parse(elevationUrl));

// Create a new surface.
final surface = Surface();

// Add the elevation source to the surface.
surface.elevationSources.add(source);

// Set the base surface of the ArcGISScene to the surface.
scene.baseSurface = surface;

// Set the scene to the scene view controller's arcGISScene property.
sceneViewController.arcGISScene = scene;

You can also instantiate a ArcGISScene that's stored in a portal (such as ArcGIS Online) using its item ID or URL.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// Instantiate a Portal object to connect to the portal anonymously.
final portal = Portal.arcGISOnline();
const itemId = '579f97b2f3b94d4a8e48a5f140a6639b'; // Web scene item ID.

// Create a PortalItem object using the item ID that
// references the web scene.
final portalItem =
    PortalItem.withPortalAndItemId(portal: portal, itemId: itemId);

// Create a scene with the portal item.
final scene = ArcGISScene.withItem(portalItem);

// Set the scene to the scene view controller's arcGISScene property.
sceneViewController.arcGISScene = scene;

The portal item, in this example, determines the scene's viewing mode as global or local. This distinction is important when it comes time to connect the scene with a view to display the map in an application. See global scene for details working with a global scene or local scene when working with a local scene. For cases when you need to specify the scene viewing mode, use SceneViewingMode to specify an appropriate option.

When the ArcGISScene first appears in the ArcGISSceneView or ArcGISLocalSceneView, you can focus the initial display at a specified view point by setting ArcGISScene.initialViewpoint.

Global scene

In a global scene, you can display spatial content on a sphere based on geographic coordinate systems. A global scene is recommended when you want to understand or provide context for phenomena that wrap around the spherical surface of the earth, such as global weather measurements, world population, or shipping lanes. You can also use a global scene to display data at a city-wide level or down to a building site level. Once you have a global ArcGISScene, in order to display it in an application, you need to connect it to ArcGISSceneView. See global scene overview for details about working with global scenes.

Global scene displaying world population data.

Local scene

In a local scene, you can display data that has a spatial reference in a projected coordinate system, and the terrain and layers are shown projected on a planar surface rather than on a sphere. Local scenes are recommended for displaying data at a local or city scale that have a fixed extent in which you work. Local scenes are helpful for urban planning and visualization, such as when viewing campus facilities or building developments. You can also navigate underground and interact with subsurface data, such as utility networks or earthquake data. Once you have a local ArcGISScene, in order to display it in an application, you need to connect it to ArcGISLocalSceneView. See local scene overview for details about working with local scenes.

Local scene displaying a building.

Scene views

ArcGISLocalSceneView does not currently support all the capabilities or layer types available in ArcGISSceneView. This section outlines the main differences between ArcGISLocalSceneView and ArcGISSceneView, and describes how we plan to resolve these differences in future releases.

Layer types

Here are some notable differences between the supported layer types in ArcGISLocalSceneView and ArcGISSceneView:

See Layer types for more details.

Capabilities

Similarly, here are some ArcGISSceneView capabilities that are not yet available in ArcGISLocalSceneView:

Delivering additional capabilities

The ArcGISLocalSceneView will be aligned with ArcGISSceneView over time; expect to see the capabilities and layer types listed above delivered in future releases, starting with:

Samples

Services

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.