将用户重定向到Google地图Android应用程序,制作标记并填写目的地

时间:2013-08-26 23:35:12

标签: android google-maps google-maps-markers

我是否可以将用户重定向到Android上的Google地图应用程序。然后为它们填写目的地并添加一些标记。因此,如果用户想知道商店的位置,他们会被重定向到Google地图应用程序,只需要填写他们所在的位置,以便他们可以轻松找到商店。是否可以将坐标从一个应用程序传递到另一个应用程序?

1 个答案:

答案 0 :(得分:1)

要打开包含目的地的地图应用程序,您可以使用

String uri = String.format(Locale.ENGLISH, "geo:0,0?q="+latitude+","+longitude+"("+destinationNme+")");
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
context.startActivity(intent);