マーカーの配列を作成しました。私はこれらのマーカーの配列を使用して、「クリック」を聞き、マーカーをGoogle Mapに配置し、「すべてのマーカーを消去する」、「すべてのマーカーを再表示」、および「すべてのマーカーを削除する」機能を作成します。Googleマップで一度に1つのマーカーを削除するには
問題は、一度に1つのマーカーを消去または削除できるようにするにはどうすればよいですか?なぜなら、私が偶然、私が欲しくない場所に作図してしまった場合、それをクリア/削除したいと思うので、私はそれをすることができなかったからです。私はその特定のマーカーを削除/クリアした場合、私が以前にプロットされているマーカーの残りの部分は、同様に削除/クリアされます...
マイコード:
//Initialize the map
function initialize() {
var myLatlng = new google.maps.LatLng(2,110);
var myOptions = {
zoom: 3,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.HYBRID
};
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
infowindow = new google.maps.InfoWindow({
content: "loading..."
});
}
function changeForm(the_form) {
window.location = the_form;
}
//Listen for click
function marker() {
google.maps.event.addListener(map, 'click', function(event) {
addMarker(event.latLng);
});
}
// Place markers in by click
function addMarker(location) {
marker = new google.maps.Marker({
position: location,
map: map,
title:"Specified Location",
icon: 'images/greenPoint.png'
});
markersArray.push(marker);
}
// Deletes all markers in the array by removing references to them
function deleteOverlays() {
if (markersArray) {
for (i in markersArray) {
markersArray[i].setMap(null);
}
markersArray.length = 0;
}
}
// Removes the overlays from the map, but keeps them in the array
function clearOverlays() {
if (markersArray) {
for (i in markersArray) {
markersArray[i].setMap(null);
}
}
}
// Shows any overlays currently in the array
function showOverlays() {
if (markersArray) {
for (i in markersArray) {
markersArray[i].setMap(map);
}
}
}