Class GeometryUtils

java.lang.Object
com.naver.maps.map.util.GeometryUtils

public class GeometryUtils extends Object
지오메트리 관련 유틸리티를 제공하는 클래스.
  • Method Summary

    Modifier and Type
    Method
    Description
    static double
    getProgress(List<com.naver.maps.geometry.LatLng> coords, com.naver.maps.geometry.LatLng target)
    coords 경로선에서 target 좌표에 가장 근접한 지점의 진척률을 반환합니다.
    static double
    getProgressForCoordParts(List<List<com.naver.maps.geometry.LatLng>> coordParts, com.naver.maps.geometry.LatLng target)
    coordParts 경로선에서 target 좌표에 가장 근접한 지점의 진척률을 반환합니다.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • getProgress

      @FloatRange(from=0.0, to=1.0) public static double getProgress(@NonNull List<com.naver.maps.geometry.LatLng> coords, @NonNull com.naver.maps.geometry.LatLng target)
      coords 경로선에서 target 좌표에 가장 근접한 지점의 진척률을 반환합니다.
      Parameters:
      coords - 경로선.
      target - 좌표.
      Returns:
      진척률.
      See Also:
    • getProgressForCoordParts

      @FloatRange(from=0.0, to=1.0) public static double getProgressForCoordParts(@NonNull List<List<com.naver.maps.geometry.LatLng>> coordParts, @NonNull com.naver.maps.geometry.LatLng target)
      coordParts 경로선에서 target 좌표에 가장 근접한 지점의 진척률을 반환합니다.
      Parameters:
      coordParts - 경로선.
      target - 좌표.
      Returns:
      진척률.
      See Also: