gpt4 book ai didi

javascript - 使用 javascript 删除谷歌地图上的许多标记之一

转载 作者:行者123 更新时间:2023-11-29 10:49:31 25 4
gpt4 key购买 nike

我目前使用以下代码向 map 添加标记。我希望能够通过推送 javascript 命令随时删除任何一个。这可能吗?

例如。放置 5 个标记.. 移除第 3 个,同时保留另外 4 个。

$('#map').show();
var geocoder = new google.maps.Geocoder();
var address = document.getElementById("address").value +", " + document.getElementById("city").value;

geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var lat = results[0].geometry.location.lat();
var lng = results[0].geometry.location.lng();
locationsall[counter] = new Array();
locationsall[counter][0] = address;
locationsall[counter][1] = lat;
locationsall[counter][2] = lng;
var mapOptions = {
zoom: 13,
center: new google.maps.LatLng(lat, lng),
mapTypeId: google.maps.MapTypeId.ROADMAP
}

var map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
var marker, i;
for (i = 0; i < locationsall.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locationsall[i][1], locationsall[i][2]),
map: map,
title: 'You are here!'
});
}
counter++;
} else {
alert("Geocode was not successful for the following reason: " + status);
}

});

编辑 1:

        }).text("Remove").click(function() {
var index2 = $tr2.index();
$("#locationDeals input[type='hidden']").each(function() {
this.name = this.name.replace(/\[(\d+)\]/, function(str2, number2) {
return "[" + (+number2 > index2 - 1 ? number2 - 1 : number2) + "]";
});
});
//locationsall[locations.indexOf(location)].setMap(null);
$tr2.remove();
locations.splice(locations.indexOf(location), 1);
return false;
}).appendTo($tdRemoveRow2);

最佳答案

for 循环 之外定义一个 Array 来保存所有添加的标记。例如。 allMarkers = []

在创建标记后的 for 循环 中,将其插入所述数组。例如。 allMarkers.push(标记)

当你想移除第一个标记时:allMarkers[0].setMap(null),或者第三个标记:allMarkers[2].setMap(null)

关于javascript - 使用 javascript 删除谷歌地图上的许多标记之一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13203323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com