현위치 마커 customDirectionImageAnchorPointOffset 설정 안되는 이슈

,

안녕하세요, iOS(Swift)로 카카오맵 클론을 구현하던 중, 다음과 같은 문제가 생겨서 문의 드립니다.

현재 위치를 나타내는 마커를 커스텀하며 MTMapLocationMarkerItem 객체를 새로 생성하고, 아래와 같이 현재위치 마커를 세팅하였지만 tracking image와 direction image의 중앙이 맞지 않습니다.

tracking image의 크기는 64x64 pixels 이고, direction image의 크기는 144x100 pixels 입니다.

[코드]

let currentLocationMarker = MTMapLocationMarkerItem()
    
currentLocationMarker.customImageName = Constants.currentLocationMarkerIcon
currentLocationMarker.customImageAnchorPointOffset = MTMapImageOffset(offsetX: 32, offsetY: 32)
    
currentLocationMarker.customTrackingImageName = Constants.currentLocationMarkerIcon
currentLocationMarker.customTrackingImageAnchorPointOffset = MTMapImageOffset(offsetX: 32, offsetY: 32)
    
currentLocationMarker.customDirectionImageName = Constants.currentDirectionMarkerIcon
currentLocationMarker.customDirectionImageAnchorPointOffset = MTMapImageOffset(offsetX: 72, offsetY: 0)
    
kakaoMap.updateCurrentLocationMarker(currentLocationMarker)

tracking image는 정중앙에 잘 위치하지만, 아무리 customDirectionImageAnchorPointOffset의 offset 값을 조정해봐도 나침반 모드로 변경했을 때 direction image는 오른쪽 아래로 살짝 치우쳐져 나타나서, 해결 방법을 여쭙고 싶습니다.

감사합니다.

혹시 해결할 수 있는 방법이 없는 것일까요?