void
void

Reputation: 36703

Removing zoom in/out from Highmaps

I am using Highmaps to plot a map on my webpage. I want to disable any kind of zooming, for ex:

  1. Through zoom in zoom out buttons.
  2. Through scroll.
  3. Pinch to zoom.
  4. On touch devices.
  5. Multiple clicks to zoom in.

I have tried this:

chart:{
   pinchType : 'none',
   zoomType : 'none'
}

and this:

mapNavigation:{
        enableButton:false,
        enableDoubleClickZoom:false,
        enableDoubleClickZoomTo:false,
        enableMouseWheelZoom:false,
        enableTouchZoom:false
       },

but no luck.

Upvotes: 2

Views: 1629

Answers (1)

Geo George
Geo George

Reputation: 359

Try this demo

$.getJSON('https://www.highcharts.com/samples/data/jsonp.php?filename=world-population-density.json&callback=?', function(data) {

  // Initiate the chart
  Highcharts.mapChart('container', {

    title: {
      text: 'Zoom in on country by double click'
    },

    mapNavigation: {
      enabled: false,
    },

    colorAxis: {
      min: 1,
      max: 1000,
      type: 'logarithmic'
    },

    series: [{
      data: data,
      mapData: Highcharts.maps['custom/world'],
      joinBy: ['iso-a2', 'code'],
      name: 'Population density',
      states: {
        hover: {
          color: '#a4edba'
        }
      },
      tooltip: {
        valueSuffix: '/km²'
      }
    }]
  });
});
#container {
  height: 500px;
  min-width: 310px;
  max-width: 800px;
  margin: 0 auto;
}

.loading {
  margin-top: 10em;
  text-align: center;
  color: gray;
}
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.highcharts.com/maps/highmaps.js"></script>
<script src="https://code.highcharts.com/maps/modules/data.js"></script>
<script src="https://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="https://code.highcharts.com/mapdata/custom/world.js"></script>


<div id="container" style="max-width: 1000px"></div>

jsfiddle demo : http://jsfiddle.net/geogeorge/ssh63xhb/

Upvotes: 1

Related Questions