Skip to main content Link Menu Expand (external link) Document Search Copy Copied

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Widgets

PopupVisibleElements Class

The visible elements that are displayed within the widget. This provides the ability to turn individual elements of
the widget’s display on/off.

public class PopupVisibleElements : dymaptic.GeoBlazor.Core.Components.MapComponent

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

Constructors

PopupVisibleElements() Constructor

Parameterless constructor for use as a razor component.

public PopupVisibleElements();

PopupVisibleElements(Nullable, Nullable) Constructor

Constructor for creating a PopupVisibleElements object in code.

public PopupVisibleElements(System.Nullable<bool> closeButton=null, System.Nullable<bool> featureNavigation=null);

Parameters

closeButton System.Nullable<System.Boolean>

featureNavigation System.Nullable<System.Boolean>

Properties

PopupVisibleElements.CloseButton Property

Indicates whether to display a close button on the popup dialog. Default value is true.

public System.Nullable<bool> CloseButton { get; set; }

Property Value

System.Nullable<System.Boolean>

PopupVisibleElements.FeatureNavigation Property

Indicates whether pagination for feature navigation will be displayed. Default value is true. This allows the user
to scroll through various selected features using pagination arrows.

public System.Nullable<bool> FeatureNavigation { get; set; }

Property Value

System.Nullable<System.Boolean>