Public Property LayerElevation As CIMLayerElevationSurface
public CIMLayerElevationSurface LayerElevation {get; set;}
Public Property LayerElevation As CIMLayerElevationSurface
public CIMLayerElevationSurface LayerElevation {get; set;}
{
//Note: needs to be called on the MCT
//Define the custom elevation surface to use
var layerElevationSurface = new CIMLayerElevationSurface
{
ElevationSurfaceLayerURI = "https://elevation3d.arcgis.com/arcgis/services/WorldElevation3D/Terrain3D/ImageServer"
};
//Get the layer's definition
var lyrDefn = featureLayer.GetDefinition() as CIMBasicFeatureLayer;
//Set the layer's elevation surface
lyrDefn.LayerElevation = layerElevationSurface;
//Set the layer's definition
featureLayer.SetDefinition(lyrDefn);
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)