Skip to content

코스 길 조회

sovovy edited this page Sep 22, 2019 · 1 revision

코스 길 조회

Method URL Description
GET /course/:course_idx/line 코스 길(위도,경도 좌표들) 조회

요청 헤더

Content-Type : application/json

응답 성공

// status : 200
{
    "message": "Success",
    "data": [
        {
          "longitude" : 126.3214,
          "latitude" : 37.57772
        },
        {
          "longitude" : 126.3214,
          "latitude" : 37.57772
        },
        {
          "longitude" : 126.3214,
          "latitude" : 37.57772
        },
        {
          "longitude" : 126.3214,
          "latitude" : 37.57772
        }, ...
        {
          "longitude" : 126.3214,
          "latitude" : 37.57772
        }
    ]
}
Clone this wiki locally