Skip to main content
A newer version of this page is available. .

MapControl.ZoomToFit(IEnumerable<MapItem>, Double) Method

Zooms the map to fit the area containing items sent as a parameter.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v19.2.dll

Declaration

public void ZoomToFit(
    IEnumerable<MapItem> items,
    double paddingFactor
)

Parameters

Name Type Description
items IEnumerable<MapItem>

A IEnumerable object containing MapItem descendant objects that should be visible on a map after zooming.

paddingFactor Double

A Double object, which tunes the border size around visible map items.

Remarks

  • When vector items loading in a runtime this method should be called from LayerBase.DataLoaded event handler.
  • This method works as follows.

    • Calculates a bounding box around objects.

      ZoomToFit_DescribedRegion

    • Zooms the map to fit the box. Note that the padding factor is applied to the larger dimension of the box.

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

      ZoomToFit_ZoomedMap

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

      ZoomToFit_VerticalSizeZooming

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

    In the instance of the following code

    map.ZoomToFit(storage.Items, 0.3);
    

    The result should look like the following.

    ZoomToFit_ZoomExample

The following code snippets (auto-collected from DevExpress Examples) contain references to the ZoomToFit(IEnumerable<MapItem>, Double) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also