Interaction Options

Shows interaction options for custom scroll and zoom behavior.

This example uses a custom ol/interaction/defaults configuration:

  • By default, wheel/trackpad zoom and drag panning is always active, which can be unexpected on pages with a lot of scrollable content and an embedded map. To perform wheel/trackpad zoom and drag-pan actions only when the map has the focus, set onFocusOnly: true as option. This requires a map div with a tabindex attribute set.
  • By default, pinch-zoom and wheel/trackpad zoom interactions can leave the map at fractional zoom levels. If instead you want to constrain wheel/trackpad zooming to integer zoom levels, set constrainResolution: true.
<!DOCTYPE html>
<html>
  <head>
    <title>Interaction Options</title>
    <link rel="stylesheet" href="https://openlayers.org/en/v5.3.0/css/ol.css" type="text/css">
    <!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
    <script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>

  </head>
  <body>
    <div tabindex="1" id="map" class="map"></div>
    <script>
      import Map from 'ol/Map.js';
      import View from 'ol/View.js';
      import {defaults as defaultInteractions} from 'ol/interaction.js';
      import TileLayer from 'ol/layer/Tile.js';
      import OSM from 'ol/source/OSM.js';


      var map = new Map({
        interactions: defaultInteractions({
          constrainResolution: true, onFocusOnly: true
        }),
        layers: [
          new TileLayer({
            source: new OSM()
          })
        ],
        target: 'map',
        view: new View({
          center: [0, 0],
          zoom: 2
        })
      });
    </script>
  </body>
</html>