Disable rotation on the view

This sample demonstrates how to disable rotation on a MapView instance. Simply set the rotationEnabled property on the MapView.constraints to false.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
const view = new MapView({
  container: "viewDiv",
  map: map,
  constraints: {
    rotationEnabled: false
  }
});

Try rotating the view by performing the Right-click + drag gesture.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.