dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Interfaces

ICustomParametersMixin Interface

Interface for types CatalogLayer, FeatureLayer, MapImageLayer, SceneLayer, TileLayer

public interface ICustomParametersMixin :
dymaptic.GeoBlazor.Core.Interfaces.IMapComponent

Derived
FeatureLayer
MapImageLayer
TileLayer

Implements IMapComponent

Properties

ICustomParametersMixin.CustomParameters Property

A list of custom parameters appended to the URL of all resources fetched by the layer.
ArcGIS Maps SDK for JavaScript

System.Collections.Generic.Dictionary<string,object>? CustomParameters { get; set; }

Property Value

System.Collections.Generic.Dictionary<System.String,System.Object>

Methods

ICustomParametersMixin.GetCustomParameters() Method

Asynchronously retrieve the current value of the CustomParameters property.

System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string,object>?> GetCustomParameters();

Returns

System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<System.String,System.Object>>

ICustomParametersMixin.SetCustomParameters(Dictionary<string,object>) Method

Asynchronously set the value of the CustomParameters property after render.

System.Threading.Tasks.Task SetCustomParameters(System.Collections.Generic.Dictionary<string,object>? value);

Parameters

value System.Collections.Generic.Dictionary<System.String,System.Object>

Returns

System.Threading.Tasks.Task