์ธํฌ๋ฐ์ค๊ฐ ์์ฑ๋์ง ์์์
function PlacesSearchCB(data, status) { if (status === daum.maps.services.Status.OK) { displayPlaces(data); }else if (status === daum.maps.services.Status.ZERO_RESULT) { alert("๊ฒ์ ๊ฒฐ๊ณผ๊ฐ ์กด์ฌํ์ง ์์ต๋๋ค"); return; }else if (status === daum.maps.services.Status.ERROR) { alert("๊ฒ์ ๊ฒฐ๊ณผ์ค ์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค"); return; } } function displayInfowindow(marker, title, address, lat, lng){ let content = ` ${title} ${address} ${title}','${address}',${lat},${lng});">๋ฑ๋ก `; ๊ทธ์ธ infowindow ์๋ฌธ์, ๋๋ฌธ์ ํ์ธํด๋ณด์ธ์.