gpt4 book ai didi

javascript - 无法删除 Google Maps JS API 中的标记

转载 作者:行者123 更新时间:2023-11-30 12:11:36 26 4
gpt4 key购买 nike

我想在点击 map 时删除 map 上的所有标记。

我正在关注此处的文档:https://developers.google.com/maps/documentation/javascript/examples/marker-remove

我已经包含了函数:

function clearMarkers() {
setMapOnAll(null);
}

由点击事件触发,但我只是得到错误:

Uncaught ReferenceError: setMapOnAll is not defined

文档中没有其他信息可以帮助我。

谁能指出我正确的方向?

最佳答案

错误提示范围内不存在setMapOnAll

// Sets the map on all markers in the array.
function setMapOnAll(map) {
for (var i = 0; i < markers.length; i++) {
markers[i].setMap(map);
}
}

关于javascript - 无法删除 Google Maps JS API 中的标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33621438/

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