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