• GeoJSON의 모든 MultiFeature를 Single Features로 변환하는 함수입니다.

    Parameters

    • geoJSON: GeoJSON | Geometry

      변환할 GeoJSON 입니다.

    Returns FeatureCollection<Geometry, {
        [name: string]: any;
    }>

    반환된 Single Features의 FeatureCollection 입니다.

    Example

    const multiLineString: ktGms.geometry.MultiLineString = new ktGms.geometry.MultiLineString([
    [
    [126.97836689018322, 37.57467935534363],
    [126.97559885048008, 37.57357392622542],
    [126.97669319175719, 37.572298410699915],
    [126.98130659126315, 37.57270657804507],
    [126.9817572023772, 37.57442425777265],
    ],
    [
    [126.98804430030918, 37.574985471274786],
    [126.98381713890103, 37.57490043919793],
    [126.98383859657315, 37.57297868836547],
    [126.98868803047213, 37.57277460571838],
    ],
    ]);
    const flatten = analysis.conversion.flatten(multiLineString);

Generated using TypeDoc