a battle with myself

[android] 다음지도 URL SCHEMA 사용법 길찾기 등 본문

android

[android] 다음지도 URL SCHEMA 사용법 길찾기 등

열공_중 2017. 1. 13. 09:18

시작 좌표 도착 좌표를 URL 상에 parameter로 넣어주고 intent를 띄워주면 됨

String url = "daummaps://route?sp="+USER Latitude+","+USER Longitude+"&ep="+ARRIVAL Latitude+","+ARRIVAL Longitude+"&by=FOOT";

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);