带有JVectorMap自带文本的弹出窗口

时间:2012-08-14 14:01:02

标签: mapping jvectormap

是否可以通过JVectorMap启用不仅包含国家/地区名称,还包含一些其他文本(例如地址,电话)的弹出窗口?

1 个答案:

答案 0 :(得分:2)

是的,您绑定了onRegionLabelShow事件的处理程序。传递给回调的第二个参数是label jQuery元素。见documentation。例如:

onRegionLabelShow: function(e, label, code){
  label.html(label.html()+' (GDP - '+gdpData[code]+')');
}