0
読み込んだ後heremap私はそれにカスタム画像でマーカーを設定します。そして、マーカーをクリックした後、バブルポップアップが表示されます。私はそれをクリックするとマーカーアイコンを変更したいと思います。クリックするとマーカーアイコンをどのように変更できますか?ここをクリックしてマーカーアイコンを変更する方法
下記のようにマーカーをクリックした後に気泡を表示するコード。
map.addObject(group);
// add 'tap' event listener, that opens info bubble, to the group
group.addEventListener('tap', function (evt) {
// event target is the marker itself, group is a parent event target
// for all objects that it contains
var bubble = new H.ui.InfoBubble(evt.target.getPosition(), {
// read custom data
content: evt.target.getData()
});
// show info bubble
ui.addBubble(bubble);
}, false);
感謝を支援します – Rakesh