如何在悬停时打开信息气泡

时间:2019-02-26 19:00:54

标签: javascript here-api

我很难解决上述问题。 除了官方示例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);

1 个答案:

答案 0 :(得分:2)

您快到了。您要收听的事件称为 pointermove

a!b

请参见 map events guide