dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Symbols
Outline Class
A convenience subclass of SimpleLineSymbol for defining outlines of other symbols.
public class Outline : dymaptic.GeoBlazor.Core.Components.Symbols.SimpleLineSymbol
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 Symbol 🡒 LineSymbol 🡒 SimpleLineSymbol 🡒 Outline
Constructors
Outline() Constructor
Parameterless constructor for use as a Razor Component.
public Outline();
Outline(SimpleLineSymbol) Constructor
Convenience constructor for creating an outline from a SimpleLineSymbol.
public Outline(dymaptic.GeoBlazor.Core.Components.Symbols.SimpleLineSymbol symbol);
Parameters
symbol
SimpleLineSymbol
Outline(MapColor, Dimension, Nullable<SimpleLineSymbolStyle>, Nullable<Cap>, Nullable<Join>, LineSymbolMarker, Nullable<double>) Constructor
Constructor for use in C# code.
public Outline(dymaptic.GeoBlazor.Core.Model.MapColor? color=null, dymaptic.GeoBlazor.Core.Model.Dimension? width=null, System.Nullable<dymaptic.GeoBlazor.Core.Enums.SimpleLineSymbolStyle> style=null, System.Nullable<dymaptic.GeoBlazor.Core.Enums.Cap> cap=null, System.Nullable<dymaptic.GeoBlazor.Core.Enums.Join> join=null, dymaptic.GeoBlazor.Core.Components.Symbols.LineSymbolMarker? marker=null, System.Nullable<double> miterLimit=null);
Parameters
color
MapColor
The color of the symbol. default black <a target=”_blank” href=”https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol.html#color”>ArcGIS Maps SDK for JavaScript</a>
width
Dimension
The width of the symbol in points. default 0.75 <a target=”_blank” href=”https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-LineSymbol.html#width”>ArcGIS Maps SDK for JavaScript</a>
style
System.Nullable<SimpleLineSymbolStyle>
Specifies the line style. default solid <a target=”_blank” href=”https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html#style”>ArcGIS Maps SDK for JavaScript</a>
Specifies the cap style. default round <a target=”_blank” href=”https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html#cap”>ArcGIS Maps SDK for JavaScript</a>
Specifies the join style. default round <a target=”_blank” href=”https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html#join”>ArcGIS Maps SDK for JavaScript</a>
marker
LineSymbolMarker
Specifies the color, style, and placement of a symbol marker on the line. <a target=”_blank” href=”https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html#marker”>ArcGIS Maps SDK for JavaScript</a>
miterLimit
System.Nullable<System.Double>
Maximum allowed ratio of the width of a miter join to the line width. default 2 <a target=”_blank” href=”https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html#miterLimit”>ArcGIS Maps SDK for JavaScript</a>