Package com.naver.maps.map.clustering
Interface DistanceStrategy
- All Known Implementing Classes:
DefaultDistanceStrategy
public interface DistanceStrategy
각
이 전략은
Node
간의 거리를 측정하는 전략에 대한 인터페이스.
이 전략은
ThresholdStrategy
와 밀접하게 연관되어 있습니다. 두 노드 node1
, node2
가
있을 때, getDistance(zoom, node1, node2)
가 반환한 둘 간의 거리가 getThreshold(zoom)
가
반환한 기준값보다 작거나 같으면 두 노드는 zoom
레벨에서 클러스터링됩니다.-
Method Summary
Modifier and TypeMethodDescriptiondouble
getDistance
(int zoom, Node node1, Node node2) 줌 레벨이zoom
일 때node1
과node2
간의 거리를 반환합니다.
-
Method Details