获取附近的位置或地标
谷歌中是否有任何 API 可用于查找我当前的 GPS 纬度和经度位置的附近位置或地标。
Is there any API in google for finding nearby location or Landmarks for my current GPS lat&long position.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用这个:
在 geo 之后输入坐标,在 q= 之后输入搜索项,例如旅游+城市。这将启动带有兴趣点的 Google 地图应用程序。
如果您想在应用程序中使用地图视图,则需要从某些服务(例如您自己的服务)获取数据。不过,您可以从 Google 的 ajax 搜索中提取数据,如下所示
http://ajax.googleapis.com/ajax/services/search/local?v=1.0&rsz=large&gl=pl&q=tourism+chicago
更多信息:
http://code.google.com/apis/websearch/docs/reference .html#_fonje_local
这将为您提供具有地理坐标的结果,您需要采取一种方法来解析结果,并可能将它们放入数据库中。
希望它有帮助...
Use this :
After geo you put your coordinates, and after q= you input your search tearms, like tourism+city. This will fire up the Google Maps app with the points of interest.
If you want to use a maps view inside your application, you would need to get the data from some service, like your own. However you could pull the data from Google's ajax search like this
http://ajax.googleapis.com/ajax/services/search/local?v=1.0&rsz=large&gl=pl&q=tourism+chicago
more info :
http://code.google.com/apis/websearch/docs/reference.html#_fonje_local
This will give you results that have geo-coordinates and you would need to make a way of parsing the results and maybe get them into a database.
hope it helps...