https://developers.google.com/maps/documentation/android/lines doc は、".geodesic(true)"
オプションを作成することで、地球の曲率に従うと述べています。しかし、それは直線を示しているだけです。助言がありますか?
質問する
822 次
1 に答える
0
このコードを試してください
String uri = "http://maps.google.com/maps?saddr=" +
currentLatitude+","+currentLongitude+"&daddr="+fixedLatitude+","+fixedLongitude;
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(uri)); intent.setClassName("com.google.android.apps.maps",
"com.google.android.maps.MapsActivity"); startActivity(intent);
これはあなたを助けるかもしれません
于 2013-01-02T12:15:58.667 に答える