JQVMap region Click Error

蓝咒 提交于 2019-11-28 07:42:28

问题


I have a JQVMap setup like this:

jQuery('#vmap').vectorMap({
  map: 'usa_en',
  enableZoom: true,
  showTooltip: true,
  selectedRegion: 'MO',
  onRegionClick: function(element, code, region) {
    var message = 'You clicked "'
      + region
      + '" which has the code: '
      + code.toUpperCase();
    alert(message);
  },
});

When I click on any state I get the alert for the state as set up above, but I also get a JS error in the console:

regionClickEvent is not defined

It is the if (!regionClickEvent.isDefaultPrevented()) { line in the JQVMap file, which is throwing the error. How can I get the state clicked on without throwing this error?


回答1:


Found the solution, change line 466 in jqvmap.js file to:

regionClickEvent = $.Event('regionClick.jqvmap');

jQuery(params.container).trigger(regionClickEvent, [code, mapData.pathes[code].name]);


来源:https://stackoverflow.com/questions/17459539/jqvmap-region-click-error

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!