Android용 Intents를 사용하여 Google 지도 길찾기 실행
질문:
어떻게 시작할 수 있나요? Android에서 인텐트를 사용하여 두 위치 간 Google 지도 길찾기 app?
답변:
예, Intent를 사용하여 Google 지도 길찾기를 실행할 수 있습니다. 방법은 다음과 같습니다.
1 2 3 | 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);
|
로그인 후 복사
1 2 3 | Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse( "http://maps.google.com/maps?daddr=20.5666,45.345" ));
startActivity(intent);
|
로그인 후 복사
- 직접 내비게이션(Google 지도 앱 설치 필요):
1 2 | Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse( "google.navigation:q=an+address+city" ));
|
로그인 후 복사
업데이트(5월 2017):
Google은 범용 크로스 플랫폼 Google 지도 URL을 위한 새로운 API를 출시했습니다. 새로운 API에서도 인텐트를 사용할 수 있습니다.
1 | Uri gmmIntentUri = Uri.parse( "https://www.google.com/maps/dir/?api=1&origin=Sydney&destination=Brisbane&travelmode=driving" );
|
로그인 후 복사
1 2 | Intent intent = new Intent(android.content.Intent.ACTION_VIEW, gmmIntentUri);
startActivity(intent);
|
로그인 후 복사
위 내용은 Android에서 인텐트를 사용하여 Google 지도 방향을 실행하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!