0

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

4

1 回答 1

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);
于 2013-08-27T01:13:23.697 回答