Disable all zooming on the view

This device does not support 3D.

View the system requirements for more information.

This sample demonstrates how to disable all zooming gestures on a MapView instance. The following gestures perform zoom actions on the view by default:

The following sections detail how each of these gestures/widgets can be disabled to prevent any zoom gestures on the view.

Disable the Zoom widget

Remove the Zoom widget from the view's default UI components by excluding the zoom string from the list of default UI widgets. You can do this either in the view's constructor:

var view = new MapView({
  container: "viewDiv",
  map: map,
  // exlude the zoom widget from the default UI
  ui: {
    components: [ "attribution" ]
  }
});

... or after it is ready:

view.ui.components = [ "attribution" ];

Disable the default +/- key-down gestures

To disable zooming with the keyboard, listen to the key-down event and stop the default behavior by calling stopPropagation() on the event object only when the + and - keys are pressed. Since the Shift + = keys also trigger the + key, we disable those as well.

view.on("key-down", function(evt){
  var prohibitedKeys = [ "+", "-", "Shift", "_", "=" ];
  var keyPressed = evt.key;
  if(prohibitedKeys.indexOf(keyPressed) !== -1){
    evt.stopPropagation();
  }
});

Disable the default mouse-wheel behavior

Simply call stopPropagation() on the mouse-wheel event object to prevent the user from zooming by scrolling the mouse wheel.

view.on("mouse-wheel", function(evt){
  evt.stopPropagation();
});

Disable zooming via double-click

The same function used to prevent zooming with the mouse-wheel gesture may be passed to the event listener for double-click to prevent zooming in via double-click.

view.on("double-click", function(evt){
  evt.stopPropagation();
});

Add the ["Control"] modifier to prevent zooming out with Control + double-click.

view.on("double-click", ["Control"], function(evt){
  evt.stopPropagation();
});

Disable pinch zoom and panning

Stop propagation on the drag event object to disable panning and pinch zoom.

view.on("drag", function(evt){
  evt.stopPropagation();
});

Disable the view's zoom box

To prevent the user from zooming in or out by creating a zoom box with Shift + drag or Shift + Control + drag, call the stopPropagation() method of the drag event object with the Shift and Control+Shift modifiers.

view.on("drag", ["Shift"], function(evt){
  evt.stopPropagation();
});

view.on("drag", ["Shift", "Control"], function(evt){
  evt.stopPropagation();
});

Sample search results

TitleSample

There were no match results from your search criteria.