Подскажите, как получить список координат между двумя точками на карте?
{type: 'wayPoint', point: [lat1,lon1] },
{type: 'wayPoint', point: [lat2,lon2] }
]).then(
function (route) {
// console.info(route);
// console.info(route.editor);
},
function (error) {
console.info(error);
}
);
Хочу из объекта route вытащить список double[]
спасибо