Display a scene with a terrain surface and some imagery.
Use case
Scene views are 3D representations of real-world areas and objects. Scene views are helpful for visualizing complex datasets where 3D relationships, topography, and elevation of elements are important factors.
How to use the sample
When loaded, the sample will display a scene. Pan and zoom to explore the scene.
How it works
- Create a
Scene
object with theBasemapStyle.ArcGISImageryStandard
basemap style. - Create an
ArcGISTiledElevationSource
object and add it to the scene's base surface. - Create a
SceneView
object to display the map. - Set the scene to the scene view.
Relevant API
- ArcGISTiledElevationSource
- Scene
- SceneView
Tags
3D, basemap, elevation, scene, surface
Sample Code
<UserControl x:Class="ArcGISRuntime.WinUI.Samples.DisplayScene.DisplayScene"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriUI:SceneView x:Name="MySceneView" />
</Grid>
</UserControl>