• 두 점의 중심점을 계산하는 함수입니다.

    Parameters

    • point1: PointGeo | Feature<Point, {
          [name: string]: any;
      }> | Coord

      계산할 점 또는 점의 좌표입니다.

    • point2: PointGeo | Feature<Point, {
          [name: string]: any;
      }> | Coord

      계산할 점 또는 점의 좌표입니다.

    Returns Feature<Point, {
        [name: string]: any;
    }>

    계산된 중심점 Point Feature 결과입니다.

    Example

    const coordinate1 = [127.02222, 37.49144];
    const coordinate2 = [127.015522, 37.49044];
    const midPoint = analysis.measurement.midpoint(coordinate1, coordinate2);

    See

    Get a midpoint between points 두 점의 중심점을 계산하는 예제

Generated using TypeDoc