홍예림

Directions_15_sample2

var request = require('request');
//필요한 주소 정보 (data 형식 확정 x )
let address = {
"current_address" : { "address" : "현재 위치 주소", "x" : 127.1058342, "y" : 37.359708},
"number" : 10,
"hospital_data" :[
{"name" : "병원명", "address" : "병원 주소", "x" : 129.075986, "y" : 35.179470},
{"name" : "병원명", "address" : "병원 주소", "x" : 127.1058342, "y" : 37.359708}
]
}
var options = {
'method': 'GET',
'url': 'https://naveropenapi.apigw.ntruss.com/map-direction-15/v1/driving?start=127.1058342,37.359708&goal=129.075986,35.179470&option=trafast',
'url': 'https://naveropenapi.apigw.ntruss.com/map-direction-15/v1/driving?start='+address.current_address.x+','
+address.current_address.y+'&goal='+address.hospital_data[0].x+','+address.hospital_data[0].y+'&option=trafast',
'headers': {
'X-NCP-APIGW-API-KEY-ID': '12rhzhzq7g',
'X-NCP-APIGW-API-KEY': 'FhD45P91TxG2820MadrsiPOUjI6bQMJhddnHZIeI'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
let body = JSON.parse(response.body);
var distance = body.route.trafast[0].summary.distance/1000; // km 단위
var duration = body.route.trafast[0].summary.duration/1000/60; // 분 단위
const data = {
"distance" : distance,
"duration" : duration
}
console.log(data);
});
//duration으로 정렬
function durationSort(a, b) {
if(a.x == b.x){ return 0} return a.x > b.x ? 1 : -1;
}
address.hospital_data.sort(durationSort);
console.log(address);
/*
최종 데이터 형식
{
"current_address" : { "address" : "현재 위치 주소", "x" : 127.1058342, "y" : 37.359708},
"number" : 10,
"hospital_data" :[
{"name" : "병원명", "address" : "병원 주소", "x" : 129.075986, "y" : 35.179470, "distance" : 377830, "duration" : 15177133},
{"name" : "병원명", "address" : "병원 주소", "x" : 127.1058342, "y" : 37.359708, "distance" : 377830, "duration" : 15177133}
]
}*/
......