Showing
1 changed file
with
3 additions
and
4 deletions
... | @@ -37,12 +37,12 @@ | ... | @@ -37,12 +37,12 @@ |
37 | listData = listData.replaceAll('"','\"'); | 37 | listData = listData.replaceAll('"','\"'); |
38 | listData = JSON.parse(listData); | 38 | listData = JSON.parse(listData); |
39 | 39 | ||
40 | - console.log(listData); | 40 | + // console.log(listData); |
41 | - // console.log(listData[1]); | 41 | + |
42 | //입력되는 배열명이 listData로 들어오면 됨. | 42 | //입력되는 배열명이 listData로 들어오면 됨. |
43 | listData.forEach(function(addr, index) { | 43 | listData.forEach(function(addr, index) { |
44 | var tmpaddr = ((addr.orgZipaddr).split(','))[0]; | 44 | var tmpaddr = ((addr.orgZipaddr).split(','))[0]; |
45 | - console.log(tmpaddr); | 45 | + // console.log(tmpaddr); |
46 | geocoder.addressSearch(tmpaddr, function(result, status) { | 46 | geocoder.addressSearch(tmpaddr, function(result, status) { |
47 | if (status === kakao.maps.services.Status.OK) { | 47 | if (status === kakao.maps.services.Status.OK) { |
48 | var coords = new kakao.maps.LatLng(result[0].y, result[0].x); | 48 | var coords = new kakao.maps.LatLng(result[0].y, result[0].x); |
... | @@ -66,7 +66,6 @@ | ... | @@ -66,7 +66,6 @@ |
66 | }); | 66 | }); |
67 | } | 67 | } |
68 | }); | 68 | }); |
69 | - | ||
70 | }); | 69 | }); |
71 | 70 | ||
72 | // 인포윈도우를 표시하는 클로저를 만드는 함수입니다 | 71 | // 인포윈도우를 표시하는 클로저를 만드는 함수입니다 | ... | ... |
-
Please register or login to post a comment