This sample demonstrates how to disable rotation on a MapView instance. Simply set the rotation
property on the MapView.constraints to false
.
const view = new MapView({
container: "viewDiv",
map: map,
constraints: {
rotationEnabled: false
}
});
Try rotating the view by performing the Right-click + drag
gesture.