김서연

Merge branch 'integrated_2_ksy' into 'integrated#2'

Integrated 2 ksy



See merge request !10
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
23 var mapContainer = document.getElementById('map'), // 지도를 표시할 div 23 var mapContainer = document.getElementById('map'), // 지도를 표시할 div
24 mapOption = { 24 mapOption = {
25 center: new kakao.maps.LatLng(37.596672, 127.051950), // 지도의 중심좌표 25 center: new kakao.maps.LatLng(37.596672, 127.051950), // 지도의 중심좌표
26 - level: 3 // 지도의 확대 레벨 26 + level: 5 // 지도의 확대 레벨
27 }; 27 };
28 28
29 var map = new kakao.maps.Map(mapContainer, mapOption); // 지도를 생성합니다 29 var map = new kakao.maps.Map(mapContainer, mapOption); // 지도를 생성합니다
...@@ -36,16 +36,10 @@ ...@@ -36,16 +36,10 @@
36 listData = listData.replaceAll('"','\"'); 36 listData = listData.replaceAll('"','\"');
37 listData = JSON.parse(listData); 37 listData = JSON.parse(listData);
38 38
39 - // var x = 0;
40 - // var y = 0;
41 - // var count = 0;
42 -
43 - // console.log(listData[1]);
44 //입력되는 배열명이 listData로 들어오면 됨. 39 //입력되는 배열명이 listData로 들어오면 됨.
45 listData.forEach(function(addr, index) { 40 listData.forEach(function(addr, index) {
46 var tmpaddr = ((addr.orgZipaddr).split(','))[0]; 41 var tmpaddr = ((addr.orgZipaddr).split(','))[0];
47 console.log(tmpaddr); 42 console.log(tmpaddr);
48 - console.log("h");
49 geocoder.addressSearch(tmpaddr, function(result, status) { 43 geocoder.addressSearch(tmpaddr, function(result, status) {
50 if (status === kakao.maps.services.Status.OK) { 44 if (status === kakao.maps.services.Status.OK) {
51 var coords = new kakao.maps.LatLng(result[0].y, result[0].x); 45 var coords = new kakao.maps.LatLng(result[0].y, result[0].x);
...@@ -90,5 +84,6 @@ ...@@ -90,5 +84,6 @@
90 } 84 }
91 </script> 85 </script>
92 <% } %> 86 <% } %>
87 +
93 </body> 88 </body>
94 </html> 89 </html>
...\ No newline at end of file ...\ No newline at end of file
......