-
Notifications
You must be signed in to change notification settings - Fork 1
코스 길 조회
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
}
]
}