Android アプリケーションにターンバイターン方式のナビゲーションを組み込みたいと考えています。これを行う方法についてのチュートリアルまたはアイデアを教えてください。事前に感謝します。
質問する
5988 次
3 に答える
1
アクティビティでこのコードを使用できます。
double latitudeDestination = 52.377028; // or some other location
double longitudeDestination = 4.892421; // or some other location
String requestedMode = "walking" // or bike or car
String mode = "";
if(requestedMode.equals("walking")) {
mode = "&mode=w";
} else if(requestedMode.equals("bike")) {
mode = "&mode=b";
} else if(requestedMode.equals("car")) {
mode = "&mode=c";
}
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(String.format("google.navigation:ll=%s,%s%s", latitudeDestination, longitudeDestination, mode)));
startActivity(intent);
于 2012-12-13T12:23:21.303 に答える