Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Leaflet minimap scrollwheel zoom disable

I am having an issue disabling scrollwheel zoom in Leaflet Minimap. I am instantiating the minimap with a centerFixed and a zoomLevelFixed option as per https://github.com/Norkart/Leaflet-MiniMap/pull/95 but I can still zoom with the scroll wheel; Panning is disable though.

The following is the code

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="fullscreen.css" />
    <!-- Leaflet -->
    <link rel="stylesheet" 
    href="https://unpkg.com/[email protected]/dist/leaflet.css" />
    <script src="https://unpkg.com/[email protected]/dist/leaflet.js" 
    type="text/javascript"></script>

    <!-- Leaflet Plugins -->
    <link rel="stylesheet" href="Control.MiniMap.css" />
    <script src="Control.MiniMap.js" type="text/javascript"></script>

    </head>

    <body>
     <div id="map" ></div>

     <script type="text/javascript">

     var map = new L.Map('map', { scrollWheelZoom: false});
     var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
     var osmAttrib='Map data &copy; OpenStreetMap contributors';
     var osm = new L.TileLayer(osmUrl, {/*minZoom: 5, maxZoom: 18,*/ attribution: osmAttrib});
     map.addLayer(osm);
     map.setView(new L.LatLng(59.92448055859924, 10.758276373601069),10);

     //Plugin magic goes here! Note that you cannot use the same layer object again, as that will confuse the two map controls
     var osm2 = new L.TileLayer(osmUrl, {/*minZoom: 0, maxZoom: 13,*/ attribution: osmAttrib });


     var miniMap = new L.Control.MiniMap(osm2, 
        { position: "topright",
          centerFixed: [40.7842, -73.9919],
          toggleDisplay: true, 
          zoomLevelFixed: true
        }).addTo(map);
     </script>
    </body>
    </html>

I appreciate any guidance in solving this issue. Thank you!

like image 735
jcarapia Avatar asked May 10 '17 23:05

jcarapia


People also ask

How do you turn off zoom in leaflet?

Controlling the zoom A leaflet map has several ways to control the zoom level shown, but the most obvious one is setZoom() . For example, map. setZoom(0); will set the zoom level of map to 0 .

How do you change the zoom on a leaflet?

Zoom − By default, this control exists at the top left corner of the map. It has two buttons "+" and "–", using which you can zoom-in or zoom-out the map. You can remove the default zoom control by setting the zoomControl option of the map options to false.


1 Answers

I suppose you should use disable instead of false.

    map.scrollWheelZoom.disable();
like image 113
Rahul M S Avatar answered Nov 01 '22 22:11

Rahul M S