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.UI.Controls
Assembly: Esri.ArcGISRuntime.Toolkit.WinUI.dll
Syntax
public class OverviewMap : Control

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 dependency property.

Declaration
public static readonly DependencyProperty AreaSymbolProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

GeoViewProperty

Identifies the GeoView dependency property.

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

MapProperty

Identifies the Map dependency property.

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

PointSymbolProperty

Identifies the PointSymbol dependency property.

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

ScaleFactorProperty

Identifies the ScaleFactor dependency property.

Declaration
public static readonly DependencyProperty ScaleFactorProperty
Field Value
Type Description
DependencyProperty

Properties

| Improve this Doc View Source

AreaSymbol

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

Declaration
public Symbology.Symbol? AreaSymbol { get; set; }
Property Value
Type Description
Nullable<Symbology.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 Map? Map { get; set; }
Property Value
Type Description
Nullable<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 Symbology.Symbol? PointSymbol { get; set; }
Property Value
Type Description
Nullable<Symbology.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