gpt4 book ai didi

google-maps - Google Places API 中缺少 Google Maps 中的地点

转载 作者:行者123 更新时间:2023-12-04 12:47:22 32 4
gpt4 key购买 nike

我一直在尝试在 Google Places API 中查找特定位置,但没有成功。当我在谷歌地图中输入“La Cucina Trattoria”时,我得到三个结果。但是,当我运行此查询时:

https://maps.googleapis.com/maps/api/place/autocomplete/json?key=API_KEY&input=la%20cucina%20trattoria

我只得到两个结果。因此,我测试了更多具有类似效果的查询:

输入=la%20cucina%20trattoria%20gmbh - 没有结果

https://maps.googleapis.com/maps/api/place/search/json?key=API_KEY&location=48.139649,11.602685&rankby=distance&keyword=cucina - 结果中缺少的地方(我已将其确切位置作为参数)

location=48.139649,11.602685&rankby=distance&keyword=Neherstraße%209 - 结果中缺少位置(但是,它从同一条街道返回结果)

我的客户随机命名了两个他知道的地方,但在 Google Places API 中都找不到。 Google Places API 和 Google Maps 是否有可能在两个不同的数据库上运行?或者这些地方可以隐藏在公共(public) API 中吗?

最佳答案

我遇到过类似的问题,但通常更改查询会产生更好的结果。除了 reporting it ,您可以手动add a place :

POST https://maps.googleapis.com/maps/api/place/add/json?key=AddYourOwnKeyHere HTTP/1.1
Host: maps.googleapis.com

{
"location": {
"lat": -33.8669710,
"lng": 151.1958750
},
"accuracy": 50,
"name": "Google Shoes!",
"phone_number": "(02) 9374 4000",
"address": "48 Pirrama Road, Pyrmont, NSW 2009, Australia",
"types": ["shoe_store"],
"website": "http://www.google.com.au/",
"language": "en-AU"
}

这应该允许您的应用程序立即看到该地点并可能将其添加到 Google map 中。

关于google-maps - Google Places API 中缺少 Google Maps 中的地点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28091895/

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