我试图让click
和mouseOver
处理程序与Highmaps一起使用。我检查了文档并尝试按照他们的示例进行操作。我在任何我觉得有意义的地方插入了事件处理程序配置。
想要的结果是,当悬停并点击地图中的标签(图钉图标)时会调用click
和mouseOver
处理程序。
摆弄我的非工作代码: http://jsfiddle.net/fyp86hct/1/
其中一个Highmaps示例显示您应该能够执行此操作:
point:
{
events:
{
click: function ()
{
alert("this doesn't work"); // <-- non working event handler
},
mouseOver: function()
{
alert("this doesn't work"); // <-- non working event handler
}
}
}