728x90
?rect="여기에 들어갈 것은 무엇인가?"
문서도 자세하지 않고, 개발자 포럼 답변도 뭔가 아리송했따.
여러번의 시도 끝에....
결론은 나는 이렇게 했다.
onMapViewMoveFinished에서
지도에서 손을 뗸 순간의 화면의 BottomLeft값과 TopRight값을 받아왔다.
그리고 각각 저장해주었다.
left = mapView.mapPointBounds.bottomLeft.mapPointGeoCoord.latitude.toString()
bottom = mapView.mapPointBounds.bottomLeft.mapPointGeoCoord.longitude.toString()
right = mapView.mapPointBounds.topRight.mapPointGeoCoord.latitude.toString()
top = mapView.mapPointBounds.topRight.mapPointGeoCoord.longitude.toString()
그리고 마커에 이렇게 넣었다.
rect = "${bottom},${left},${top},${right}"
'Kotlin > 안드로이드 공부' 카테고리의 다른 글
Google Map API 총정리 (0) | 2020.11.04 |
---|---|
No Activity found to handle Intent : android.intent.action.VIEW (0) | 2020.09.16 |
retrofit2 카카오 (0) | 2020.09.09 |
다음에 이 글 참고하기 (0) | 2020.09.07 |
카카오지도api 시작하기 (0) | 2020.09.07 |