dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
BookmarksCapabilities Class
Specifies the abilities for the Bookmarks widget.
ArcGIS Maps SDK for JavaScript
public class BookmarksCapabilities : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 BookmarksCapabilities
Constructors
BookmarksCapabilities() Constructor
Parameterless constructor for use as a Razor Component.
public BookmarksCapabilities();
BookmarksCapabilities(Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public BookmarksCapabilities(System.Nullable<bool> time=null);
Parameters
time
System.Nullable<System.Boolean>
Indicates whether the time capability is enabled in the Bookmarks widget.
ArcGIS Maps SDK for JavaScript
Properties
BookmarksCapabilities.Time Property
Indicates whether the time capability is enabled in the Bookmarks widget.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> Time { get; set; }
Property Value
System.Nullable<System.Boolean>
Methods
BookmarksCapabilities.GetTime() Method
Asynchronously retrieve the current value of the Time property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetTime();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
BookmarksCapabilities.SetTime(Nullable) Method
Asynchronously set the value of the Time property after render.
public System.Threading.Tasks.Task SetTime(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.