GoogleマップルートサービスAPIV3のJSON応答から複数のルート値を操作する方法は?
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
//Need to access the multiple routes values here.
directionsDisplay.setDirections(response);
}
});