목록구글맵 (2)
투케이2K
/* =========================== */ [ 설명 ] 1. 구글 맵에서 특정 장소의 위도, 경도 값을 확인할 수 있는 방법입니다 /* =========================== */ /* =========================== */ [방법 설명] 1. 크롬 웹 브라우저 > 구글 맵 (google map) 사이트 이동 실시 https://www.google.co.kr/maps/ Google Maps Find local businesses, view maps and get driving directions in Google Maps. www.google.co.kr 2. [google 지도 검색] 부분에서 > [장소 검색 실시] > 주소에 표시된 [위도, 경..
/* =========================== */ [ 개발 환경 설정 ] 개발 툴 : AndroidStudio 개발 언어 : java /* =========================== */ /* =========================== */ [소스 코드] public void googleMapCall(){ try { /** [인텐트 사용해 구글맵 호출 실시] */ Uri uri = Uri.parse("geo: 37.564213 , 127.001698"); //TODO 위도, 경도값 입력 Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent); } catch (Exception e){ e.prin..