• Remote에 존재하는 Shape 파일을 비동기로 불러와 GeoJSON으로 변환해주는 함수입니다.

    Parameters

    • url: string

      Shape 파일의 url입니다.

    Returns Promise<GeoJSON>

    Promise GeoJSON 객체가 반환됩니다.

    Example

    analysis.utils.getShapefromRemote("https://map.gis.kt.com/mapsdk/shape/convenience_store.zip")
    .then(value => console.log(value))
    .catch(err => console.log(err))

Generated using TypeDoc