• 입력으로 주어진 GeoJSON을 모두 포함하는 bounding box를 계산하는 함수입니다.

    Parameters

    • geoJSON: GeoJSON | Geometry

      계산할 GeoJSON 입니다.

    Returns BBox

    계산된 bounding box 결과입니다.

    Example

    const line: ktGms.geometry.LineString = new ktGms.geometry.LineString(
    [
    [127.02222, 37.49144],
    [127.015522, 37.49044],
    [127.015522, 37.49294],
    ],
    {}
    );
    const bbox = analysis.measurement.bbox(line);

    See

    Calculate a bounding box 선의 bounding box를 계산하고 이를 다각형으로 변환하는 예제

Generated using TypeDoc