通过Android上的意图启动Google Maps Directions

我的应用程序需要显示从A到B的Google Maps路线,但是我不想将Google Maps放入我的应用程序-相反,我想使用Intent启动它。这可能吗?如果是,怎么办?

回答:

你可以使用如下形式:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 

Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));

startActivity(intent);

要从当前位置开始导航,请删除saddr参数和值。

你可以使用实际的街道地址代替经纬度。但是,这将为用户提供一个对话框,供你选择是通过浏览器还是Google Maps打开它。

这将直接在导航模式下启动Google地图:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,

Uri.parse("google.navigation:q=an+address+city"));

以上是 通过Android上的意图启动Google Maps Directions 的全部内容, 来源链接: utcz.com/qa/403999.html

回到顶部