0

嗨,我想使用当前位置查找附近的地方。我浏览了许多文档,还登录了 developer.google.com/console 并创建了新项目。在服务中我启用了 google api 服务,但是当我尝试将其放在下面的链接中时浏览器https://maps.googleapis.com/maps/api/place/search/json?location=12.91136601187478,77.598882598177313&radius=5000@&types=bar@&sensor=true&key=MYkey

它给

 {`"html_attributions" : [],``
   "results" : [],
  "status" : "REQUEST_DENIED"

}`

为什么会这样??即使浏览了许多文档,我也无法找到解决方案,任何人都可以告诉我解决方案。

4

1 回答 1

1

使用 Google nearBySearch。

有例子: https ://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=500&types=food&name=harbour&sensor=false&key=AddYourOwnKeyHere

在下面的链接中,您可以找到完整的规格。在您的请求中,您需要填写所有必需的参数(位置、半径、传感器和 AppKey),否则您将收到“REQUEST_DENIED” https://developers.google.com/places/documentation/search

不要忘记在开发者控制台下打开服务“Places API”。

于 2013-07-11T09:38:19.847 回答