Show / Hide Table of Contents

Class BookmarksView

The BookmarksView view presents bookmarks, either from a list defined by BookmarksOverride or the Map or Scene shown in the associated GeoView.

Inheritance
Object
BookmarksView
Namespace: Esri.ArcGISRuntime.Toolkit.Maui
Assembly: Esri.ArcGISRuntime.Toolkit.Maui.dll
Syntax
public class BookmarksView : TemplatedView

Constructors

| Improve this Doc View Source

BookmarksView()

Initializes a new instance of the BookmarksView class.

Declaration
public BookmarksView()

Fields

| Improve this Doc View Source

BookmarksOverrideProperty

Identifies the BookmarksOverride bindable property.

Declaration
public static readonly BindableProperty BookmarksOverrideProperty
Field Value
Type Description
BindableProperty
| Improve this Doc View Source

GeoViewProperty

Identifies the GeoView bindable property.

Declaration
public static readonly BindableProperty GeoViewProperty
Field Value
Type Description
BindableProperty
| Improve this Doc View Source

ItemTemplateProperty

Identifies the ItemTemplate bindable property.

Declaration
public static readonly BindableProperty ItemTemplateProperty
Field Value
Type Description
BindableProperty

Properties

| Improve this Doc View Source

BookmarksOverride

Gets or sets the list of bookmarks to display. Otherwise, the bookmarks from the Map or Scene shown in the associated GeoView are displayed.

Declaration
public IEnumerable<Bookmark>? BookmarksOverride { get; set; }
Property Value
Type Description
Nullable<IEnumerable<Bookmark>>
Remarks

If set to a Esri.ArcGISRuntime, the view will be updated with collection changes.

See Also
BookmarksOverrideProperty
| Improve this Doc View Source

GeoView

Gets or sets the geoview that contain the layers whose symbology and description will be displayed.

Declaration
public GeoView? GeoView { get; set; }
Property Value
Type Description
Nullable<GeoView>
See Also
GeoViewProperty
| Improve this Doc View Source

ItemTemplate

Gets or sets the data template that renders bookmark entries in the list.

Declaration
public DataTemplate? ItemTemplate { get; set; }
Property Value
Type Description
Nullable<DataTemplate>

Methods

| Improve this Doc View Source

OnApplyTemplate()

Declaration
protected override void OnApplyTemplate()

Events

| Improve this Doc View Source

BookmarkSelected

Raised whenever a bookmark is selected.

Declaration
public event EventHandler<Bookmark>? BookmarkSelected
Event Type
Type Description
Nullable<EventHandler<Bookmark>>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX