Android 向けインテントを使用した Google マップのルート案内の起動
質問:
どうすれば起動できますかAndroid のインテントを使用した 2 つの場所間の Google マップのルート案内app?
答え:
はい、インテントを使用して Google マップのルートを起動することができます。その方法は次のとおりです:
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);
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?daddr=20.5666,45.345")); startActivity(intent);
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("google.navigation:q=an+address+city"));
アップデート(5月) 2017):
Google は、ユニバーサル、クロスプラットフォームの Google マップ URL 用の新しい API をリリースしました。新しい API でもインテントを使用できます:
Uri gmmIntentUri = Uri.parse("https://www.google.com/maps/dir/?api=1&origin=Sydney&destination=Brisbane&travelmode=driving");
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, gmmIntentUri); startActivity(intent);
以上がAndroid でインテントを使用して Google マップのルート案内を起動する方法?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。