谷歌地图查询地址字符串格式而不是纬度/经度?
我正在开发一个android应用程序,我使用纬度/经度来绘制地图
http://maps.google.com/maps?saddr=47.295601,0.010586&daddr=47.295601,1.010586
+to:47.295601,2.010586+to:47.295601,3.010586+to:42.223501,2.011586
+to:35.215621,1.020456
,但现在我想通过地址而不是纬度/经度来绘制地图。我用谷歌搜索,但没有找到任何此类查询字符串从地址绘制地图的帮助。
I am developing an android application for which I am using latitude/longitude to draw a map
http://maps.google.com/maps?saddr=47.295601,0.010586&daddr=47.295601,1.010586
+to:47.295601,2.010586+to:47.295601,3.010586+to:42.223501,2.011586
+to:35.215621,1.020456
but now I want to draw the map through addresses instead of latitude/Longitude. I googled but not found any such help for query string to Draw map from addresses.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
执行相同的操作,但用逗号分隔地址的每个部分。
您可以使用坐标和地址的组合。
Do the same thing but separate each part of the address with commas.
You may use a combination of coordinates and addresses.
您的意思是 http: //maps.google.com/maps?q=from:champs+elysees,+paris+to:+图卢兹+to:马赛
Do you mean something like http://maps.google.com/maps?q=from:champs+elysees,+paris+to:+toulouse+to:Marseille
为什么不使用地理编码器来接收 LatLng 值?
Why dont you use the Geocoder to receive the LatLng values?