File "bindZoomButtons.js"

Full Path: /home/cananyalcin/public_html/vendors/jqvmap/src/JQVMap/bindZoomButtons.js
File size: 236 bytes
MIME-type: text/plain
Charset: utf-8

JQVMap.prototype.bindZoomButtons = function () {
  var map = this;
  this.container.find('.jqvmap-zoomin').click(function(){
    map.zoomIn();
  });
  this.container.find('.jqvmap-zoomout').click(function(){
    map.zoomOut();
  });
};