我正在尝试同时使用Photo Sphere Viewer和 Markers。我需要能够以编程方式单击标记。我希望在像这样查看标记时创建一个功能来单击它们:
spherePlayerInstance.on("position-updated", (e, position) => {
for (const [key, value] of Object.entries(markersPlugin.markers)) {
//If the position of the marker matches the position we are looking at
if (
position.latitude.toFixed(1) ==
value["props"]["position"]["latitude"].toFixed(1) &&
position.longitude.toFixed(1) ==
value["props"]["position"]["longitude"].toFixed(1)
) {
var elem = document.getElementById(
"psv-marker-" + value["config"]["id"]
);
elem.click();
}
}
});
这只是为 click 函数返回 undefined 。
我原以为会有一个点击标记的功能,但我认为没有。
任何帮助,将不胜感激。谢谢