dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

WMTSStyle Class

Contains information about the WMTS Style for WMTSSublayer.
ArcGIS Maps SDK for JavaScript

public class WMTSStyle : dymaptic.GeoBlazor.Core.Components.MapComponent

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 WMTSStyle

Constructors

WMTSStyle() Constructor

Parameterless constructor for use as a Razor Component.

public WMTSStyle();

WMTSStyle(string, string, string, string) Constructor

Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.

public WMTSStyle(string? description=null, string? legendUrl=null, string? title=null, string? wMTSStyleId=null);

Parameters

description System.String

Description for the WMTS style.
ArcGIS Maps SDK for JavaScript

legendUrl System.String

The URL to the legend which gets used in Legend widget.
ArcGIS Maps SDK for JavaScript

title System.String

The title of the WMTS style.
ArcGIS Maps SDK for JavaScript

wMTSStyleId System.String

The unique ID assigned to the style.
ArcGIS Maps SDK for JavaScript

Properties

WMTSStyle.Description Property

Description for the WMTS style.
ArcGIS Maps SDK for JavaScript

public string? Description { get; set; }

Property Value

System.String

WMTSStyle.LegendUrl Property

The URL to the legend which gets used in Legend widget.
ArcGIS Maps SDK for JavaScript

public string? LegendUrl { get; set; }

Property Value

System.String

WMTSStyle.Title Property

The title of the WMTS style.
ArcGIS Maps SDK for JavaScript

public string? Title { get; set; }

Property Value

System.String

WMTSStyle.WMTSStyleId Property

The unique ID assigned to the style.
ArcGIS Maps SDK for JavaScript

public string? WMTSStyleId { get; set; }

Property Value

System.String

Methods

WMTSStyle.GetDescription() Method

Asynchronously retrieve the current value of the Description property.

public System.Threading.Tasks.Task<string?> GetDescription();

Returns

System.Threading.Tasks.Task<System.String>

WMTSStyle.GetLegendUrl() Method

Asynchronously retrieve the current value of the LegendUrl property.

public System.Threading.Tasks.Task<string?> GetLegendUrl();

Returns

System.Threading.Tasks.Task<System.String>

WMTSStyle.GetTitle() Method

Asynchronously retrieve the current value of the Title property.

public System.Threading.Tasks.Task<string?> GetTitle();

Returns

System.Threading.Tasks.Task<System.String>

WMTSStyle.GetWMTSStyleId() Method

Asynchronously retrieve the current value of the WMTSStyleId property.

public System.Threading.Tasks.Task<string?> GetWMTSStyleId();

Returns

System.Threading.Tasks.Task<System.String>

WMTSStyle.SetDescription(string) Method

Asynchronously set the value of the Description property after render.

public System.Threading.Tasks.Task SetDescription(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

WMTSStyle.SetLegendUrl(string) Method

Asynchronously set the value of the LegendUrl property after render.

public System.Threading.Tasks.Task SetLegendUrl(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

WMTSStyle.SetTitle(string) Method

Asynchronously set the value of the Title property after render.

public System.Threading.Tasks.Task SetTitle(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

WMTSStyle.SetWMTSStyleId(string) Method

Asynchronously set the value of the WMTSStyleId property after render.

public System.Threading.Tasks.Task SetWMTSStyleId(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task