启动 Google 地图以显示道路方向
如何从我自己的应用程序启动 Google 地图以显示从当前位置 (GPS) 到指定地址的道路方向?
How do I launch Google Maps from my own application to show road directions from current position (GPS) to a specified address?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此意图应启动适当的地图活动,并在方向输入屏幕上填充当前位置和目的地点:
This intent should launch the appropriate Maps Activity with the directions input screen populated with current location and a destination point:
尝试一下。
Try it.
有关更多信息:
// 基于地址的地图点
// 或基于纬度/经度的地图点,如 @wegginho 的答案
Uri location = Uri.parse("geo:37.422219,-122.08364?z=14") ; // z 参数是缩放级别
For more information:
// Map point based on address
// Or map point based on latitude/longitude like the answer of @wegginho
Uri location = Uri.parse("geo:37.422219,-122.08364?z=14"); // z param is zoom level