A dictionary containing key/value pairs of OfflineMapParametersKey to ExportVectorTilesParameters. More...
Import Statement: | import Esri.ArcGISRuntime 100.15 |
Since: | Esri.ArcGISRuntime 100.4 |
Inherits: |
Properties
- count : int
Signals
Methods
- bool contains(OfflineMapParametersKey key)
- void insert(OfflineMapParametersKey key, ExportVectorTilesParameters value)
- OfflineMapParametersKey keyAt(int index)
- bool remove(OfflineMapParametersKey key)
- ExportVectorTilesParameters value(OfflineMapParametersKey key)
Detailed Description
The dictionary is used to set service specific parameters as part of a GenerateOfflineMapParameterOverrides object.
Property Documentation
Signal Documentation
Emitted when the count property changes.
Note: The corresponding handler is onCountChanged
.
Method Documentation
bool contains(OfflineMapParametersKey key) |
Returns whether the specified key is within the dictionary.
void insert(OfflineMapParametersKey key, ExportVectorTilesParameters value) |
Inserts the specified key, value pair into the dictionary.
If the key is already present, this will overwrite the associated value.
OfflineMapParametersKey keyAt(int index) |
Returns the key object at the specified index.
Returns null
if the index is out of bounds.
bool remove(OfflineMapParametersKey key) |
Removes the specified key from the dictionary.
Returns true
if the key was found, false
if not.
Returns the ExportVectorTilesParameters value associated with the given key.
Returns null
if the key is not found.