Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

MapControl.ZoomToRegion(CoordPoint, CoordPoint, Double) Method

Zooms to the region described by its top left and bottom right points.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v24.2.dll

NuGet Package: DevExpress.Wpf.Map

#Declaration

public void ZoomToRegion(
    CoordPoint p1,
    CoordPoint p2,
    double paddingFactor = 0.15
)

#Parameters

Name Type Description
p1 CoordPoint

A GeoPoint object.

p2 CoordPoint

A GeoPoint object.

#Optional Parameters

Name Type Default Description
paddingFactor Double 0.15

A Double object, which tunes the border size around the region.

#Remarks

Note that the padding factor is applied to the larger dimension of the region.

The following image shows an instance when the horizontal dimension is larger than the vertical. (“PF” means “Padding Factor” on an image)

WpfMapControl_ZoomToRegion_HorizontalFitting

When vertical dimension larger than the horizontal, the zoom appears as follows.

WpfMapControl_ZoomToRegion_VerticalFitting

Note that the padding factor is divided by two for each side of the region.

In the instance of the following code

GeoPoint p1 = new GeoPoint(10, 10);
GeoPoint p2 = new GeoPoint(30, 60);
mapControl.ZoomToRegion(p1, p2, 0.3);

the result should look like the following.

WpfMapControl_ZoomToRegion_NumericExample

See Also