Geocoder geocoder = new Geocoder(this);
try {
    List<Address> r = geocoder.getFromLocationName("서울시청", 1);
    double lat = r.get(0).getLatitude();
    double lng = r.get(0).getLongitude();
    Log.d("@@", "위도 : " + lat + ", 경도 : " + lng);
} catch (Exception e) {
    Log.d("@@", "주소변환 실패");
}
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,