dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
ApplicationProperties Class
Represents configuration of application and UI elements of the WebMap.
ArcGIS Maps SDK for JavaScript
public class ApplicationProperties : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 ApplicationProperties
Constructors
ApplicationProperties() Constructor
Parameterless constructor for use as a Razor Component.
public ApplicationProperties();
ApplicationProperties(Viewing) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public ApplicationProperties(dymaptic.GeoBlazor.Core.Components.Viewing? viewing=null);
Parameters
viewing
Viewing
View-specific properties of application and UI elements for the web map.
ArcGIS Maps SDK for JavaScript
Properties
ApplicationProperties.Viewing Property
View-specific properties of application and UI elements for the web map.
ArcGIS Maps SDK for JavaScript
public dymaptic.GeoBlazor.Core.Components.Viewing? Viewing { get; set; }
Property Value
Methods
ApplicationProperties.GetViewing() Method
Asynchronously retrieve the current value of the Viewing property.
public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Components.Viewing?> GetViewing();
Returns
System.Threading.Tasks.Task<Viewing>
ApplicationProperties.SetViewing(Viewing) Method
Asynchronously set the value of the Viewing property after render.
public System.Threading.Tasks.Task SetViewing(dymaptic.GeoBlazor.Core.Components.Viewing? value);
Parameters
value
Viewing
The value to set.
Returns
ApplicationProperties.ValidateRequiredGeneratedChildren() Method
Validates source-generated child components.
public override void ValidateRequiredGeneratedChildren();
Implements ValidateRequiredGeneratedChildren()