bindZoomButtons.js 236 Bytes edit raw blame history permalink 1 2 3 4 5 6 7 8 9 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(); }); };