Disable zoom on scroll

When I scroll through our website and reach the section where the map is located, it zooms as I scroll. I’d like to disable this so the page scrolls further, instead of zooming in on the map.

1 Like

Hello there, @Marketing_Vandentop :waving_hand:

Please try to add this code to the Custom JS field on the Settings tab of your widget’s settings and let me know if it helped :wink:

document.addEventListener(
  'wheel',
  (e) => {
    if (e.target.closest('[class*="maplibregl-canvas-container"]')) {
      e.stopImmediatePropagation();
    }
  },
  true
);