OfflineMapParametersKey QML Type

GenerateOfflineMapParameterOverrides."> OfflineMapParametersKey QML Type | ArcGISQtQml
  • Esri.ArcGISRuntime
  • OfflineMapParametersKey
  • A key comprising the service URL and type of online service. The key is used to lookup values in a dictionary exposed by a GenerateOfflineMapParameterOverrides. More...

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

    Object

    Properties

    Signals

    Methods

    • OfflineMapParametersKey clone()
    • bool equals(OfflineMapParametersKey other)

    Detailed Description

    Generate offline map parameter overrides consist of instances of data type specific parameters: GenerateGeodatabaseParameters, ExportTileCacheParameters and ExportVectorTilesParameters. Each instance is associated with the service URL that the parameters will be sent to when taking the given data offline.

    The data type specific parameters can be retrieved from their respective dictionaries on the GenerateOfflineMapParameterOverrides with an instance of an OfflineMapParametersKey.

    Use the key with the dictionary returned by one of these properties:

    The particular dictionary property to call will be determined by the type property. Note that a given parameters key/value pair may be shared by multiple layers in the map: for example a single GenerateGeodatabaseParameters could represent the online settings for multiple feature layers and tables which all access the same underlying feature service.

    A valid key can be initialized by setting either the initLayer or initTable properties. These properties should only be set once per key object.

    Note: If an invalid layer or table is used to obtain the key (for example one which cannot be taken offline) the key will be empty - see empty and the keyError will provide details as to what went wrong.

    Property Documentation

    [read-only] empty : bool

    Returns whether this is a valid key object (read-only).

    If true the key does not correspond to a valid set of parameters for taking a layer or table offline.


    initLayer : Layer

    The layer used to initialize this key.

    This property should only be set once at initialization time. A key be initialized using this property or initTable or initUtilityNetwork property - but not all three.

    Layers that are supported for offline use are:

    To construct a key the layer must be loaded, or if unloaded have a service URL available in the layer's properties. The returned key can be used to retrieve a data type specific parameters object from one of the three parameter overrides dictionaries. The dictionary that the key is valid for is indicated by its type property:

    If the layer type is not supported, the constructed key will return true for the empty property and the keyError property will provide details of the problem.


    initTable : ServiceFeatureTable

    The table used to initialize this key.

    This property should only be set once at initialization time. A key be initialized using this property or initLayer or initUtilityNetwork property - but not all three.

    The returned key can be used to retrieve a data type specific parameters object from the dictionary returned by GenerateOfflineMapParameterOverrides::generateGeodatabaseParameters.

    If the table type is not supported, the constructed key will return true for the empty property and the keyError property will provide details of the problem.


    [since Esri::ArcGISRuntime 100.11] initUtilityNetwork : ServiceFeatureTable

    The utility network used to initialize this key.

    This property should only be set once at initialization time. A key is initialized using this property or initLayer or initTable property - but not all three.

    A UtilityNetwork with a URL that points to a feature service, supports offline use when it returns true for SyncCapabilities::supportsUtilityNetworkSystem.

    The returned key can be used to retrieve a data-type-specific parameter object from the dictionary returned by GenerateOfflineMapParameterOverrides::generateGeodatabaseParameters

    If the UtilityNetwork does not support taking Utility Network data offline, an error is returned with a nullptr handle.

    This property was introduced in Esri::ArcGISRuntime 100.11.


    [read-only] keyError : Error

    Returns an error describing any problems when creating this key object (read-only).

    If there were no issues, the error will be empty.


    [read-only] serviceUrl : url

    Returns the service URL of this key (read-only).

    The service URL is the URL associated with a data specific parameter object in one of the dictionaries of parameter overrides owned by a GenerateOfflineMapParameterOverrides instance.


    [read-only] type : Enums.OfflineMapParametersType

    Indicates the type of parameters object used to take layers offline (read-only).

    The type of this key indicates which parameters dictionary this key belongs to:

    See also Enums.OfflineMapParametersType.


    Signal Documentation

    initLayerChanged()

    Emitted when the initLayer property changes.

    Note: The corresponding handler is onInitLayerChanged.


    initTableChanged()

    Emitted when the initTable property changes.

    Note: The corresponding handler is onInitTableChanged.


    [since Esri::ArcGISRuntime 100.11] initUtilityNetworkChanged()

    Emitted when the initUtilityNetwork property changes.

    Note: The corresponding handler is onInitUtilityNetworkChanged.

    This signal was introduced in Esri::ArcGISRuntime 100.11.


    keyErrorChanged()

    Emitted when the keyError property changes.

    Note: The corresponding handler is onKeyErrorChanged.


    Method Documentation

    [since Esri.ArcGISRuntime 200.1] OfflineMapParametersKey clone()

    Creates a deep copy of this object.

    This method was introduced in Esri.ArcGISRuntime 200.1.


    [since Esri.ArcGISRuntime 200.1] bool equals(OfflineMapParametersKey other)

    Compares two OfflineMapParametersKeys for equality.

    Returns whether this instance and other are equivalent.

    This method was introduced in Esri.ArcGISRuntime 200.1.


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