我正在尝试遍历标记集合并使用计数器变量来连接事件。"When someone clicks a marker, show the infobox in position 'count'"
问题在于脚本执行时,计数变量在每个点击事件订阅者之间共享。
这意味着,在标记 A 或 B 中的单击被连接到相同的位置,这意味着相同的 InfoBox。
var popups = [];
var count = 0;
@foreach (var marker in Model) {
<text>
/* Create Markers */
popups[count] = {};
popups[count]["marker"] = new google.maps.Marker({
map: themap
});
popups[count]["content"] = document.createElement("div");</div>';
popups[count]["infoboxoptions"] = {
boxClass: 'infobox-custom'
};
popups[count]["infobox"]= new InfoBox(popups[count]["infoboxoptions"]);
google.maps.event.addListener(popups[count]["marker"], "click", function (e) {
popups[count]["infobox"].open(themap, this);
/* PROBLEM IS HERE! ^ */
});
count++;
</text>
}
我理解这个问题,但不知道如何解决它。Javascript 为每个点击事件使用相同的变量,并且在每次迭代后递增它也为每个点击事件递增它。
有什么建议么?