public ElevationLayerCreationParams( Uri elevationSourceUri )
Public Function New( _ ByVal elevationSourceUri As Uri _ )
Parameters
- elevationSourceUri
- A System.Uri represents the path or url to a dataset or .lyrx or .lpkx file.
public ElevationLayerCreationParams( Uri elevationSourceUri )
Public Function New( _ ByVal elevationSourceUri As Uri _ )
// wrap in QueuedTask.Run // surfaceLayer could also be the ground layer string uri = "https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer"; var createParams = new ElevationLayerCreationParams(new Uri(uri)); createParams.Name = "Terrain 3D"; var eleSourceLayer = LayerFactory.Instance.CreateLayer<Layer>(createParams, surfaceLayer);
Target Platforms: Windows 11, Windows 10