我真的到处搜索,但在我的代码中找不到我的错误。我有动态加载到复选框中的信息(我的 html 上只有一个复选框),因为我不知道高级我需要多少个复选框...
这是我的代码,用于检查我的复选框是否被选中,以及其中的内容。值为 lat,lng 和 title
$(".chkbx").on("change", function() {
var selected = new Array();
//marker.setVisible(false);
//map.removeOverlay(marker);
//marker.setMap(null);
$("input:checkbox[name=checkbox]:checked").each(function() {
selected.push($(this).val());
});
console.log(selected);
for(var i=0; i< selected.length ;i++)
{
var current = selected[i].split(';');
var blueIcon = 'http://chart.apis.google.com/chart?cht=mm&chs=24x32&' + 'chco=FFFFFF,008CFF,000000&ext=.png';
var siteLatLng = new google.maps.LatLng(current[0], current[1]);
var marker = new google.maps.Marker({
position: siteLatLng,
map: map,
icon: blueIcon,
animation: google.maps.Animation.DROP,
title: current[2],
//zIndex: sites[3],
html: current[2]
});
marker.setMap(map);
}
}
});
我的标记显示在我的谷歌地图上,但无法删除它们......有人可以帮助我或提出建议吗?