-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
지도 관련 세팅 작업 #67
The head ref may contain hidden characters: "56-\uC9C0\uB3C4-\uAD00\uB828-\uC138\uD305-\uC791\uC5C5"
지도 관련 세팅 작업 #67
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다.
디자인적으로 지도 위 마커를 어떻게 표시할 것인지 또는 이벤트는 줄 건지 준다면 어떤 식으로 줄건지 정한 부분이 없었는데 마커를 클릭하면 해당 업체 상세 페이지로 이동하는것도 괜찮지 않을까 하는 생각이 조금 드네요. 현재 위치 마커만 파란색으로 하고 그 외 마커들은 노라색으로 한다거나? 등등 이 부분은 추후 새롭게 상의해서 결정해도 좋을 것 같아요 :)
app/page.tsx
Outdated
{ lat: 33.450705, lng: 126.56956, title: '카카오' }, | ||
{ lat: 33.450936, lng: 126.569477, title: '생태연못' }, | ||
]} | ||
/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이런 식으로 사용하면 되겠네요. 예시 들어주셔서 감사합니다.
시작 페이지에서는 지도를 사용하지 않으니 customer/home으로 옮기거나 pr content에 사용 예시로 옮기면 어떨까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 머지할 때 이동시키겠습니다..! 🙇♂️
구현 내용
지도 관련 세팅 작업을 진행했습니다.
pr 미리보기 배포에서는 주소가 랜덤으로 생성되어 카카오 도메인에 추가할 수 없네요..
해당 부분은 pr 환경에서는 어쩔 수 없을 것 같습니다.
지도를 확인하려면 배포 환경인
develop
브랜치에서 확인할 수 있을 것 같습니다.지도 관련 구현된 기능
사용 방법
사용 방법은 다음과 같습니다.
지도 커스텀 훅
지도와 관련해서 3가지 훅이 구성되어 있습니다.
useGetMap
: 지도 생성 관련 훅입니다.useGetCurrentMarker
: 현재 좌표 마커 생성 관련 훅입니다.useGetMarker
: 주변 좌표 마커 배열 생성 관련 훅입니다.지도와 관련해서 필요해보이는 기능은 언제든지 말씀해주세요..! 추가하도록 하겠습니다!
스크린샷
2023-11-03.12.57.06.mov
참고 사항
지도 api를 불러올 때
window.kakao
를 불러오는 코드, 즉useEffect
가 실행되기 전에Script
가 완료가 되어야 하는데요.이와 관련해서 다음과 같이 코드가 구성되었습니다.
에러를 해결하기 위해 참고한 문서들은 다음과 같습니다.
app router
를 쓰다보니 아직 문서와 일치하지 않는 부분이 존재하는 것 같습니다. 이와 관련해서 린트를 강제로 끄는 조치를 취했습니다.)Team-PalPalHae-Dealight-FE/app/layout.tsx
Line 1 in e66ee0c
궁금한 점
이슈 번호