EncDataset QML Type

An Electronic Navigation Chart (ENC) dataset object. More...

Import Statement: import Esri.ArcGISRuntime 100.15
Since: Esri.ArcGISRuntime 100.2
Inherits:

Object

Properties

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

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.


description : string

The description of ENC data set (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.


name : string

The name of ENC data set (read-only).


volumeName : string

The volume name of ENC data set (read-only).


Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close