> Java > java지도 시간 > Android에서 인텐트를 사용하여 Google 지도 방향을 실행하는 방법은 무엇입니까?

Android에서 인텐트를 사용하여 Google 지도 방향을 실행하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-12-14 07:23:29
원래의
429명이 탐색했습니다.

How to Launch Google Maps Directions Using Intents in Android?

Android용 Intents를 사용하여 Google 지도 길찾기 실행

질문:

어떻게 시작할 수 있나요? Android에서 인텐트를 사용하여 두 위치 간 Google 지도 길찾기 app?

답변:

예, Intent를 사용하여 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);
로그인 후 복사
  • 직접 내비게이션(Google 지도 앱 설치 필요):
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("google.navigation:q=an+address+city"));
로그인 후 복사

업데이트(5월 2017):

Google은 범용 크로스 플랫폼 Google 지도 URL을 위한 새로운 API를 출시했습니다. 새로운 API에서도 인텐트를 사용할 수 있습니다.

  • Google 지도 URL 구문 분석:
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿