Extrude features based on their attributes.
Use case
Extrusion is the process of stretching a flat, 2D shape vertically to create a 3D object in a scene. For example, you can extrude building polygons by a height value to create three-dimensional building shapes.
How to use the sample
Press the button to switch between using population density and total population for extrusion. Higher extrusion directly corresponds to higher attribute values.
How it works
- Create a
ServiceFeatureTable
from a URL. - Create a feature layer from the service feature table.
- Make sure to set the rendering mode to dynamic.
- Apply a
SimpleRenderer
to the feature layer. - Set
ExtrusionMode
of render,renderer.SceneProperties.ExtrusionMode = SceneProperties.ExtrusionMode.BaseHeight
. - Set extrusion expression of renderer,
renderer.SceneProperties.ExtrusionExpression = "[POP2007]/ 10"
.
Relevant API
- ExtrusionExpression
- ExtrusionMode
- FeatureLayer
- FeatureLayer
- SceneProperties
- ServiceFeatureTable
- SimpleRenderer
Tags
3D, extrude, extrusion, extrusion expression, height, renderer, scene
Sample Code
<UserControl
x:Class="ArcGIS.UWP.Samples.FeatureLayerExtrusion.FeatureLayerExtrusion"
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" />
<Border Style="{StaticResource BorderStyle}">
<StackPanel>
<Button x:Name="ToggleButton"
Click="Button_ToggleExtrusionData_Click"
HorizontalAlignment="Stretch"
Content="Show population density" />
</StackPanel>
</Border>
</Grid>
</UserControl>