Show / Hide Table of Contents

Class OverviewMap

Defines a small "overview" (or "inset") map displaying a representation of the attached GeoView's current viewpoint.

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

Constructors

| Improve this Doc View Source

OverviewMap()

Initializes a new instance of the OverviewMap class.

Declaration
public OverviewMap()

Fields

| Improve this Doc View Source

AreaSymbolProperty

Identifies the AreaSymbol bindable property.

Declaration
public static readonly BindableProperty AreaSymbolProperty
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

MapProperty

Identifies the Map bindable property.

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

PointSymbolProperty

Identifies the PointSymbol bindable property.

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

ScaleFactorProperty

Identifies the ScaleFactor bindable property.

Declaration
public static readonly BindableProperty ScaleFactorProperty
Field Value
Type Description
BindableProperty

Properties

| Improve this Doc View Source

AreaSymbol

Gets or sets the symbol used to draw the GeoView's visible area.

Declaration
public Symbol? AreaSymbol { get; set; }
Property Value
Type Description
Nullable<Symbol>
Remarks

The default is an empty fill symbol with a 1 point red outline.

| Improve this Doc View Source

GeoView

Gets or sets the geoview whose extent is to be displayed.

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

Note that by default interaction with OverviewMap will navigate the attached GeoView.

| Improve this Doc View Source

Map

Gets or sets the Map shown in the inset/overview map.

Declaration
public Mapping.Map? Map { get; set; }
Property Value
Type Description
Nullable<Mapping.Map>
Remarks

Defaults to a map with a basemap in style .

| Improve this Doc View Source

PointSymbol

Gets or sets the symbol used to draw the GeoView's viewpoint when it isn't possible to show the visible area (for example, when showing a scene).

Declaration
public Symbol? PointSymbol { get; set; }
Property Value
Type Description
Nullable<Symbol>
Remarks

The default is a red cross.

| Improve this Doc View Source

ScaleFactor

Gets or sets the amount to scale the overview map's viewpoint compared to the attached GeoView.

Declaration
public double ScaleFactor { get; set; }
Property Value
Type Description
Double
Remarks

The default is 25.

Methods

| Improve this Doc View Source

OnApplyTemplate()

Declaration
protected override void OnApplyTemplate()
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX