I was trying to know why there are slight differences (and fix them) between a json from http://maps.googleapis.com/maps/api/directions/json?origin=Bd+de+tess%C3%A9,toulon&destination=rue+picot,toulon&sensor=true
and from Javascript API:
var request = {
origin: "Bd+de+tessé,toulon",
destination: "rue+picot,toulon",
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
res= response;
directionsDisplay.setDirections(response);
var route = response.routes[0];
// For each route, display summary information.
for (var i = 0; i < route.legs.length; i++) {
var routeSegment = i + 1;
console.log("<b>Route Segment: " + routeSegment + "</b><br />"+
route.legs[i].start_address + " to "+
route.legs[i].end_address + "<br />"+
route.legs[i].distance.text + "<br /><br />");
}
}
});
JSON.stringify(res, null, '\t');
The reason is I would like to display jsons taken from http, server-side, with direct instruction:
var json = { "routes" : [ ... //json from http...maps.googleapis...
directionsDisplay.setDirections(json);
it doesn't work directly, returns Uncaught TypeError: Object # has no method 'getSouthWest'
I have created a latlngBounds, but still not working
Is there a way to transform json in the exact same format than res, so it would be displayable on maps?
Here is the testing code http://jsfiddle.net/ca11111/jFMQ5/29/