틀린 내용이 있을 수 있습니다. 발견하시면 말씀 부탁드립니다! 🙇 Google map polyline을 통해 구글맵 위에 도형을 그릴 수 있다. 나는 불필요하게 Google polyline 객체 생성하는 걸 지양하고자 사용자가 특정 버튼을 클릭해야 지도상에 도형이 그려지도록 했다. const handleDisplayPolylineButton = () => { // localstorage에 저장한 좌표배열 추출 let pathList = localStorage.getItem('pathList'); if (pathList === null) { alert('No path data.'); } pathList = JSON.parse(pathList); // 도형 객체 생성 const flightPath = new..