EncDataset QML Type
An Electronic Navigation Chart (ENC) dataset object. More...
Import Statement: | import Esri.ArcGISRuntime 100.9 |
Since: | Esri.ArcGISRuntime 100.2 |
Inherits: |
Properties
- authorized : bool
- description : string
- extent : Envelope
- name : string
- volumeName : string
Detailed Description
Use EncExchangeSet
to get the list of EncDataset
from a list of paths.
// create EncExchangeSet using paths
EncExchangeSet {
id: encExchangeSet
paths: paths
}
function displayNames() {
// get the list of EncDataset
var encDatasets = encExchangeSet.datasets;
// display the names of EncDataset
for (var i = 0; i < encDatasets.length; ++i) {
console.log(encDatasets[i].name);
}
}
Note: You cannot declare or create a component of this type in QML code.
See also EncExchangeSet and EncLayer.
Property Documentation
Gets a value indicating whether the data set is authorized.
If the underlying data is S-57, then this function returns true.
This property was introduced in Esri.ArcGISRuntime 100.3.
extent : Envelope |
Returns the extent of the ENC data set (read-only).
The extent can be used for setting the viewpoint of the map view to the ENC data set.