A tile based elevation source. More...
Import Statement: | import Esri.ArcGISRuntime 100.15 |
Since: | Esri.ArcGISRuntime 100.0 |
Inherits: |
Properties
- credential : Credential
- item : ArcGISItem
- requestConfiguration : RequestConfiguration
- tileCache : TileCache
- url : url
Signals
Detailed Description
An ArcGISTiledElevationSource layer helps visualize maps and layers in 3D by making use of the elevation data.
This QML type supports the following default properties. A default property may be declared inside another declared object without being assigned explicitly to a property.
Type | Default Property |
---|---|
ArcGISItem | item |
Credential | credential |
TileCache | tileCache |
RequestConfiguration | requestConfiguration (since Esri.ArcGISRuntime 100.13) |
Example:
Create an ArcGISTiledElevationSource from an online URL:
ArcGISTiledElevationSource { id: elevSource url: url_WorldElevationTerrain3DImageServer // e.g. "http://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer" }
See also Loadable.
Property Documentation
[default] credential : Credential |
The credential used to access this service.
The credential cannot be changed after the source is loaded.
[default] item : ArcGISItem |
The item being used by the elevation source.
The Item represents an elevation service on ArcGIS Online or ArcGIS Enterprise portal.
The item cannot be changed after the source is loaded.
[default] requestConfiguration : RequestConfiguration |
The configuration parameters used for network requests sent by this task.
This property was introduced in Esri.ArcGISRuntime 100.13.
[default] tileCache : TileCache |
The TileCache of the elevation source.
The tile cache should be loaded from a .tpk
or .tpkx
file with LERC (Limited Error Raster Compression) encoded tiles. A tile package can be create in ArcGIS Pro (see the ArcGIS Pro Tile Package documentation) or from an elevation image service using ExportTileCacheTask (since Esri.ArcGISRuntime 100.1).
The tile cache cannot be changed after the elevation source is loaded.
This property was introduced in Esri.ArcGISRuntime 100.1.
The URL to the ArcGIS tiled elevation source.
The URL can be:
- an online service that has the elevation source data.
- the path to a local tile cache such as a
.tpk
file with LERC (Limited Error Raster Compression) encoded tiles. See the ArcGIS Pro Tile Package documentation (since Esri.ArcGISRuntime 100.1).
The URL cannot be changed after the source is loaded.
Signal Documentation
Emitted when the credential property changes.
Note: The corresponding handler is onCredentialChanged
.
Emitted when the item property changes.
Note: The corresponding handler is onItemChanged
.
Emitted when the requestConfiguration property changes.
Note: The corresponding handler is onRequestConfigurationChanged
.
This signal was introduced in Esri.ArcGISRuntime 100.13.
Emitted when the tileCache property changes.
Note: The corresponding handler is onTileCacheChanged
.
This signal was introduced in Esri.ArcGISRuntime 100.1.
Emitted when the url property changes.
Note: The corresponding handler is onUrlChanged
.