EncDataset QML Type
An Electronic Navigation Chart (ENC) dataset object. More...
Import Statement: | import Esri.ArcGISRuntime |
Since: | Esri.ArcGISRuntime 100.2 |
Inherits: |
- List of all members, including inherited members
- EncDataset is part of QML Type List.
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
[read-only, since Esri.ArcGISRuntime 100.3] authorized : bool |
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.
[read-only] description : string |
The description of ENC data set (read-only).
[read-only] 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.
[read-only] name : string |
The name of ENC data set (read-only).
[read-only] volumeName : string |
The volume name of ENC data set (read-only).