Show / Hide Table of Contents

Class BasemapGalleryItem

Encompasses an element in a basemap gallery.

Inheritance
Object
BasemapGalleryItem
Implements
INotifyPropertyChanged
IEquatable<BasemapGalleryItem>
Namespace: Esri.ArcGISRuntime.Toolkit.Maui
Assembly: Esri.ArcGISRuntime.Toolkit.Maui.dll
Syntax
public class BasemapGalleryItem : INotifyPropertyChanged, IEquatable<BasemapGalleryItem>

Properties

| Improve this Doc View Source

Basemap

Gets the basemap associated with this basemap item.

Declaration
public Basemap Basemap { get; }
Property Value
Type Description
Basemap
| Improve this Doc View Source

Is3D

Gets a value indicating whether this basemap is a 3D basemap.

Declaration
public bool Is3D { get; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

IsLoading

Gets or sets a value indicating whether this gallery item is actively loading the basemap.

Declaration
public bool IsLoading { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

IsLoadingThumbnail

Gets or sets a value indicating whether this gallery item is actively loading the Thumbnail.

Declaration
public bool IsLoadingThumbnail { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

IsValid

Gets a value indicating whether this basemap is a valid selection.

Declaration
public bool IsValid { get; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

Name

Gets or sets the name to display for this basemap item.

Declaration
public string Name { get; set; }
Property Value
Type Description
String
| Improve this Doc View Source

SpatialReference

Gets the spatial reference, if known, of the underlying basemap.

Declaration
public SpatialReference? SpatialReference { get; }
Property Value
Type Description
Nullable<SpatialReference>
| Improve this Doc View Source

Thumbnail

Gets or sets the thumbnail to display for this basemap item.

Declaration
public RuntimeImage? Thumbnail { get; set; }
Property Value
Type Description
Nullable<RuntimeImage>
| Improve this Doc View Source

ThumbnailData

Gets thumbnail as a byte array.

Declaration
public byte[] ThumbnailData { get; }
Property Value
Type Description
Byte[]
| Improve this Doc View Source

Tooltip

Gets or sets the tooltip to display for this basemap item.

Declaration
public string Tooltip { get; set; }
Property Value
Type Description
String

Methods

| Improve this Doc View Source

CreateAsync(Basemap)

Creates an item to represent the given basemap.

Declaration
public static async Task<BasemapGalleryItem> CreateAsync(Basemap basemap)
Parameters
Type Name Description
Basemap basemap
Returns
Type Description
Task<BasemapGalleryItem>
| Improve this Doc View Source

Equals(BasemapGalleryItem)

Declaration
public bool Equals(BasemapGalleryItem other)
Parameters
Type Name Description
BasemapGalleryItem other
Returns
Type Description
Boolean
| Improve this Doc View Source

Equals(Object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
Object obj
Returns
Type Description
Boolean
Overrides
Object.Equals(Object)
| Improve this Doc View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
Int32
Overrides
Object.GetHashCode()

Events

| Improve this Doc View Source

PropertyChanged

Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type Description
PropertyChangedEventHandler

Implements

INotifyPropertyChanged
IEquatable<T>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX