EncDisplayCategories QML Type

  • Esri.ArcGISRuntime
  • EncDisplayCategories
  • An Electronic Navigation Chart (ENC) display categories object. More...

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

    Object

    Properties

    Signals

    Detailed Description

    // 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. Use EncMarinerSettings to get an instance of this object.

    See also EncLayer.

    Property Documentation

    displayBase : bool

    A value indicating whether to display the display the S-52 "displaybase" category.


    otherDisplay : bool

    A value indicating whether to display the S-52 "other" category.

    Note: The "other" category contains all objects that are not enabled by default in "Standard Display".


    standardDisplay : bool

    A value indicating whether to display the S-52 "standard" category.

    Note: Once an object has been added to or removed from display, the display is no longer showing the "Standard Display".


    Signal Documentation

    displayBaseChanged()

    Emitted when the displayBase property changes.

    Note: The corresponding handler is onDisplayBaseChanged.


    otherDisplayChanged()

    Emitted when the otherDisplay property changes.

    Note: The corresponding handler is onOtherDisplayChanged.


    standardDisplayChanged()

    Emitted when the standardDisplay property changes.

    Note: The corresponding handler is onStandardDisplayChanged.


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