如何获取谷歌地图中的道路名称?
我只想使用地理编码器或方向服务获取谷歌地图中的道路名称而不是确切的地址。我尝试了这个结果[0].address_components[1].long_name,但它返回几个不同的名称(不一定是错误的)同一条路。
i want to get ONLY the road name in google maps not exact address, using either the geocoder or the directions service.i tried this results[0].address_components[1].long_name but it returns several different names (not necesserily wrong) on the same road.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要对该位置进行反向地理编码查找。 Google 提供了以下内容:http://code.google.com/apis/maps/documentation/ geocoding/
在此处阅读更多信息:http://en.wikipedia.org/wiki/Reverse_geocoding
You need to do a reverse geocode lookup on the location. Google provide this: http://code.google.com/apis/maps/documentation/geocoding/
Read more here: http://en.wikipedia.org/wiki/Reverse_geocoding