I couldn't figure out this problem. My question is why I cannot resolve responses. And I cannot use the responses in my controller. But I get 6 responses as empty. Please open console and push "Get Result" button under the google map. You will see undefined array.
here is plunker
getGoogleDirection.getData(response,$scope.mymap).then(function(res){
console.log(res); // **it returns undefined elements**
});
And here are services.
App.factory('setData',function($q){
return {
getData:function(array){
var deferred = $q.defer();
var newArray = [];
angular.forEach(array,function(firstBlocks,key){
var dummy = firstBlocks.chunk(9);
angular.forEach(dummy,function(last,key2){
if(key2!=0){
dummy[key2].unshift(dummy[key2-1][dummy[key2-1].length-1]);
}
});
newArray.push(dummy);
});
deferred.resolve(newArray);
return deferred.promise;
}
};
});
App.factory('getGoogleDirection',function($q){
return {
getData:function(array,mymap){
var distances = [];
var promises = []
angular.forEach(array,function(object,key){
angular.forEach(object,function(array2,key2){
promises.push(getDirection(array2));
});
});
function getDirection(array){
var wayPoints = [];
var start = array[0];
var finish = array[array.length-1];
array.pop();
array.shift();
angular.forEach(array,function(item,key){
wayPoints.push({
location:new google.maps.LatLng(parseFloat(item.lat),parseFloat(item.lng)),
stopover:true
});
});
calcRoute(new google.maps.LatLng(parseFloat(start.lat),parseFloat(start.lng)), wayPoints, new google.maps.LatLng(parseFloat(finish.lat),parseFloat(finish.lng)));
}
function calcRoute(start,waypoints,end) {
var directionsDisplay;
var directionsService = new google.maps.DirectionsService();
directionsDisplay = new google.maps.DirectionsRenderer();
directionsDisplay.setMap(mymap);
var request = {
origin:start,
destination:end,
waypoints:waypoints,
optimizeWaypoints: false,
travelMode: google.maps.TravelMode.DRIVING,
avoidHighways:false,
avoidTolls:false
};
var deferred = $q.defer();
return directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
deferred.resolve(response);
}else{
deferred.reject(response);
alert('Error');
}
return deferred.promise;
});
}
return $q.all(promises).then(function(res){
return res;
});
}
}
});
When the promise is resolved it provides the resolved data in its callback function. In your code you are not using that.
Change this piece of code
Take a look here http://plnkr.co/edit/dmlhpWKUxL7CLb1ej8FV?p=preview