windowsforms-devexpress-dot-xtramap-dot-mapcontrol-8f47467f.md
Specifies whether the map can be rotated.
Namespace : DevExpress.XtraMap
Assembly : DevExpress.XtraMap.v25.2.dll
NuGet Package : DevExpress.Win.Map
[DefaultValue(true)]
public bool EnableRotation { get; set; }
<DefaultValue(True)>
Public Property EnableRotation As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the map can be rotated; otherwise, false.
|
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;
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.
map.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
map.EnableRotation = false;
map.NavigationPanelOptions.Visible = false;
map-for-winforms-azure-routing/CS/Form1.cs#L49
mapControl.SetCenterPoint(new GeoPoint(40.714627, -74.002863), false);
mapControl.EnableRotation = false;
}
map.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder
map.EnableRotation = False
map.NavigationPanelOptions.Visible = False
map-for-winforms-azure-routing/VB/Form1.vb#L43
mapControl.SetCenterPoint(New GeoPoint(40.714627, -74.002863), False)
mapControl.EnableRotation = False
End Sub
See Also