gpt4 book ai didi

javascript - 'formatted_address' 对于某些地方为 null,但并非全部(Google map API)这是为什么?

转载 作者:行者123 更新时间:2023-12-03 01:52:31 25 4
gpt4 key购买 nike

我正在使用 Google Maps API for JS,并且 map 上有一堆标记。我有一些代码来显示 map 上每个标记的地址和名称,但地址有时返回为未定义,但有时它确实有效。

function createMarker(place) {
console.log("adding place " + place.name + " loc=" + place.geometry.location.toUrlValue(6));
var placeLoc = place.geometry.location;
var marker = new google.maps.Marker({
map: map,
position: place.geometry.location
});
var request = { reference: place.reference };
service.getDetails(request, function(details, status) {
google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent("<b>" + place.name + "</b><br />" + details.formatted_address + "<br /> <a href=" + details.website + ">Visit Website</a>");
infowindow.open(map, this);
});
});
}

有时,当我单击标记(应该显示信息窗口)时,它会抛出错误而不是显示窗口。错误是

Uncaught TypeError: Cannot read property 'formatted_address' of null

为什么会发生这种情况?如果代码正确,Google 是否有可能不知道所有内容的地址?有人可以帮我解决这个问题吗?

最佳答案

我使用这个 API 已经有大约 4 年了,这很正常。不幸的是,Google Maps API 是一个黑匣子,我们无法修复它,但也许您可以联系他们,以便他们为您提供支持

当他们给你一个回应时,我建议你评估你的变量是否有一个未定义的值,以避免出现错误

关于javascript - 'formatted_address' 对于某些地方为 null,但并非全部(Google map API)这是为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50356805/

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