카카오지도 android sdk v2 에서 특정 지점에서 몇 m가 떨어진 원을 그리려 하는데
문서에서 fromCircle을 확인해보니 반지름 radius 가 px 단위로 설정이 된다고 적혀있더라구요
저는 반지름을 m 단위로 설정하고 싶은데 그런 경우엔 그럼 어떻게 그릴 수 있을까요 ?
ref #1. API 문서 발췌
public static DotPoints fromCircle(LatLng basePosition, float radius)
: 원(Circle) 을 구성하는 DotPoints 를 생성한다.
Parameters:
basePosition
- 정점을 구성 할 basePosition 위치 좌표.
radius
- 원(Circle) 의 반지름 (px).
ref #2. demo에서 원 그리는 부분 발췌
LatLng center = LatLng.from(37.394660,127.111182);
circle = shapeLayer.addPolygon(getCircleOptions(center, 600));