我需要用右鍵點擊刪除我的標記,因爲我有兩個按鈕來顯示標記並隱藏它們,但是當我右鍵單擊每個標記時它的意思是刪除它,但它不能讓任何人查看我的代碼,看看我錯過了,因爲我看不到它,我一直在尋找,現在約2小時:永久刪除陣列中的標記
function rightclickableMarker(marker, h) {
google.maps.event.addListener(marker, 'rightclick', function(evt) {
if(lastCoordinates[h] && lastCoordinates[h].setMap){
lastCoordinates[h].setMap(null);
delete (lastCoordinates);
var idx = path.indexOf(lastCoordinates[h].getPosition())
if (idx > -1) {
path.splice(idx, 1);
// removeLine();
drawPath();
}
}
});
}
我喜歡這樣一個事實,即人們沒有理由或給出回答就投票給它 – GEOMAS