我很难解决上述问题。 除了官方示例here中提出的方法外,似乎还有其他方法可以向标记添加事件侦听器。
有问题的代码段:
group.addEventListener('mouseover', function (evt) {
// event target is the marker itself, group is a parent event target
// for all objects that it contains
console.log(`Is it working yet?`)
var bubble = new H.ui.InfoBubble(evt.target.getPosition(), {
// read custom data
content: evt.target.getData()
});
// show info bubble
ui.addBubble(bubble);
}, false);