Android 인텐트로 Google 지도 길찾기 실행
전체 경로를 통합하지 않고 Android 앱 내에서 한 위치에서 다른 위치로 Google 지도 길찾기를 표시해야 합니다. 맵 프레임워크? 인텐트를 사용하면 이를 달성할 수 있습니다.
인텐트로 Google 지도 길찾기를 실행하는 방법:
인텐트를 사용하여 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);
현재 위치에서 탐색을 시작하려면 location, saddr 매개변수를 생략하세요.
참고: 좌표 대신 거리 주소를 사용하면 사용자에게 브라우저에서 열지 아니면 Google 지도에서 열지 선택할 수 있습니다.
Google 지도 내비게이션을 직접 실행하려면 다음 단계를 따르세요.
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("google.navigation:q=an+address+city"));
Google 지도 의도 2023
2017년 5월 Google은 범용 Google 지도 URL을 지원하는 새로운 API를 도입했습니다. 이 API를 인텐트와 함께 활용할 수도 있습니다.
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("https://www.google.com/maps/dir/?api=1&origin=source_location&destination=destination_location"));
참고: source_location과 Destination_location을 적절한 값으로 바꾸세요.
위 내용은 인텐트를 사용하여 Android 앱에서 Google 지도 길찾기를 실행하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!