dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Symbols

Symbol Class

Symbol is the base class for all symbols.
ArcGIS Maps SDK for JavaScript

public abstract class Symbol : dymaptic.GeoBlazor.Core.Components.MapComponent

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

Derived
↳ FillSymbol
↳ LineSymbol
↳ MarkerSymbol
↳ TextSymbol

Properties

Symbol.Color Property

The color of the symbol.

public dymaptic.GeoBlazor.Core.Model.MapColor? Color { get; set; }

Property Value

MapColor

Symbol.Type Property

The symbol type

public abstract dymaptic.GeoBlazor.Core.Enums.SymbolType Type { get; }

Property Value

SymbolType

Methods

Symbol.GetColor() Method

Asynchronously retrieve the current value of the Color property.

public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Model.MapColor?> GetColor();

Returns

System.Threading.Tasks.Task<MapColor>

Symbol.SetColor(MapColor) Method

Asynchronously set the value of the Color property after render.

public System.Threading.Tasks.Task SetColor(dymaptic.GeoBlazor.Core.Model.MapColor? value);

Parameters

value MapColor

The value to set.

Returns

System.Threading.Tasks.Task