지도/로컬 API에 대한 문의게시//주소로 위도/경도 찾기
function codeAddress() {
var geocoder = new daum.maps.services.Geocoder();
$("input[name=resrceAdres]").each(function(idx){
var adres = $(this).val();
if(adres !== "") {
geocoder.addressSearch(adres, function(result, status) {
// 정상적으로 검색이 완료됐으면
if (status === daum.maps.services.Status.OK) {
for(i=0, n = result.length; i < n; i++) {
document.getElementsByName('resrceLa')[idx].value = result[i].y;
document.getElementsByName('resrceLo')[idx].value = result[i].x;
break;
}
} else {
//alert("geocode was not successful for the following reason: " + status);
//alert("주소 : " + adres + " 위/도 경도 값을 찾을 수 없습니다.");
}
});
} //end if adres !== ""
});
}
루프 돌면서 위도 경도 세팅하는 로직인데요
위도 경도 세팅이 안돼는 주소인경우에 메세지 보여주고 루프를 빠져나가고 싶은데 아무리 해도 안돼네요
해결 방법이 있을까요