임승현

Searching Places by Keyword - Fixing Error 1

......@@ -9,18 +9,18 @@
<script type="text/javascript" src="//dapi.kakao.com/v2/maps/sdk.js?appkey=c48bde8b1f66c569193a37cbc58d1c87"></script>
<script>
// 마커를 클릭하면 장소명을 표출할 인포윈도우 입니다
const infowindow = new kakao.maps.InfoWindow({zIndex:1});
let infowindow = new kakao.maps.InfoWindow({zIndex:1});
//지도를 표시할 div
const container = document.getElementById('map');
const options = {
let container = document.getElementById('map');
let options = {
center: new kakao.maps.LatLng(37.566826, 126.9786567),
level: 3
};
const map = new kakao.maps.Map(container, options);
let map = new kakao.maps.Map(container, options);
// 장소 검색 객체를 생성합니다
const ps = new kakao.maps.services.Places();
let ps = new kakao.maps.services.Places();
// 키워드로 장소를 검색합니다
ps.keywordSearch('수원 영화관', placesSearchCB);
ps.keywordSearch('시청역', placesSearchCB);
// 키워드 검색 완료 시 호출되는 콜백함수 입니다
function placesSearchCB (data, status, pagination) {
......