Skip to main content
All docs
V25.1
  • MapControl.EnableRotation Property

    Specifies whether the map can be rotated.

    Namespace: DevExpress.XtraMap

    Assembly: DevExpress.XtraMap.v25.1.dll

    NuGet Package: DevExpress.Win.Map

    Declaration

    [DefaultValue(true)]
    public bool EnableRotation { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true if the map can be rotated; otherwise, false.

    Remarks

    Hold down the right mouse button and move the mouse in a circle to rotate the map. Double-click the map with the right mouse button to reset the rotation angle.

    The following code disables map rotation:

    mapControl1.EnableRotation = false;
    

    Use the Angle property or call the RotateAt(Double, CoordPoint) method to rotate the map programmatically.

    The following code snippets (auto-collected from DevExpress Examples) contain references to the EnableRotation property.

    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