Class BasemapGalleryItem
Encompasses an element in a basemap gallery.
Inheritance
BasemapGalleryItem
Assembly: Esri.ArcGISRuntime.Toolkit.WinUI.dll
public class BasemapGalleryItem : INotifyPropertyChanged, IEquatable<BasemapGalleryItem>
Properties
|
Improve this Doc
View Source
Gets the basemap associated with this basemap item.
Declaration
public Basemap Basemap { get; }
Property Value
|
Improve this Doc
View Source
Gets a value indicating whether this basemap is a 3D basemap.
Declaration
public bool Is3D { get; }
Property Value
|
Improve this Doc
View Source
Gets or sets a value indicating whether this gallery item is actively loading the basemap.
Declaration
public bool IsLoading { get; set; }
Property Value
|
Improve this Doc
View Source
Gets or sets a value indicating whether this gallery item is actively loading the Thumbnail.
Declaration
public bool IsLoadingThumbnail { get; set; }
Property Value
|
Improve this Doc
View Source
Gets a value indicating whether this basemap is a valid selection.
Declaration
public bool IsValid { get; }
Property Value
|
Improve this Doc
View Source
Gets or sets the name to display for this basemap item.
Declaration
public string Name { get; set; }
Property Value
|
Improve this Doc
View Source
Gets the spatial reference, if known, of the underlying basemap.
Declaration
public SpatialReference? SpatialReference { get; }
Property Value
|
Improve this Doc
View Source
Gets or sets the thumbnail to display for this basemap item.
Declaration
public RuntimeImage? Thumbnail { get; set; }
Property Value
|
Improve this Doc
View Source
Gets the thumbnail as an ImageSource for convenient use from UWP.
Declaration
public ImageSource? ThumbnailBitmap { get; }
Property Value
|
Improve this Doc
View Source
Gets thumbnail as a byte array.
Declaration
public byte[] ThumbnailData { get; }
Property Value
|
Improve this Doc
View Source
Gets or sets the tooltip to display for this basemap item.
Declaration
public string Tooltip { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Creates an item to represent the given basemap.
Declaration
public static async Task<BasemapGalleryItem> CreateAsync(Basemap basemap)
Parameters
Type |
Name |
Description |
Basemap |
basemap |
|
Returns
|
Improve this Doc
View Source
Declaration
public bool Equals(BasemapGalleryItem other)
Parameters
Returns
|
Improve this Doc
View Source
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
|
Improve this Doc
View Source
Declaration
public override int GetHashCode()
Returns
Overrides
Events
|
Improve this Doc
View Source
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Implements