Skip to main content

DynamicMiniMapBehavior.ZoomOffset Property

Gets or sets the mini map zoom level offset relative to the map control zoom level.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v23.2.dll

NuGet Package: DevExpress.Win.Map

Declaration

[DefaultValue(-3)]
public double ZoomOffset { get; set; }

Property Value

Type Default Description
Double -3

A double value, specifying the offset.

Remarks

The following image demonstrates this property used with the default value.

MapControl_DynamicMiniMapBehavior_ZoomOffset

The following code shows how to use this property.

mapControl.MiniMap.Behavior = new DynamicMiniMapBehavior() { ZoomOffset = -4 };
See Also