자바스크립트를 이용해 위도,경도를 주소로 변환하기

위도 경도 데이터는 있는데 이를 주소명, 지역명으로 변환하고 싶을 때 사용한다.

API 키 발급과 정보 : https://developers.daum.net/services/apis/local/geo/coord2addr

    var lon = '경도';
    var lat = '위도';
$.ajax({
    url: 'https://apis.daum.net/local/geo/coord2addr?apikey=발급받은API키&longitude=' + lon + '&latitude=' + lat + '&inputCoordSystem=WGS84&output=json',
    type: 'GET',
    cache: false,
    context: {},
    crossOrigin: true,
    success: function(data) {
        var jsonObj = $.parseJSON(data);
        var contentText = document.getElementById('content');
            contentText.innerHTML += "<br>동네 이름 : " + jsonObj.name + " / 전체 주소 : " + jsonObj.fullName + " / 나라 : " + jsonObj.name0;
    },error:function(request,status,error){
        alert("다시 시도해주세요.\n" + "code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error);
    }
});

 

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP