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/

link|improve this question

71% accept rate
feedback

1 Answer

This works for me, make sure you use add the geocoding library. <script src="http://maps.google.com/maps/api/js?sensor=true&libraries=geometry"></script> I didn't bother with waypoints (I don't need them for my use).

// DirectionsStep -> { distance: <Distance>,
//                     duration: <Duration>,
//                     end_location: <LatLng>,
//                     instructions: <string>,
//                     path: Array <LatLng>,
//                     start_location: <LatLng>,
//                     travel_mode: <TravelMode> }
google.maps.DirectionsStep = function( step ){
    return {
        distance: step.distance,
        duration: step.duration,
        end_location: new google.maps.LatLng( step.end_location.lat, step.end_location.lng ),
        instructions: step.html_instructions,
        path: google.maps.geometry.encoding.decodePath( step.polyline.points ),
        start_location: new google.maps.LatLng( step.start_location.lat, step.start_location.lng ),
        travel_mode: eval('google.maps.TravelMode'+step.travel_mode)
    };
}

// DirectionsLeg -> { distance: <Distance>,
//                    duration: <Duration>,
//                    end_address: <string>,
//                    end_location: <LatLng>
//                    start_address: string,
//                    start_location: <LatLng>,
//                    steps: Array <DirectionsStep>,
//                    via_waypoints: Array <LatLng> }
google.maps.DirectionsLeg = function( leg ){
    var steps = [];
    for (var i=0; i<leg.steps.length; i++)
        steps.push( new google.maps.DirectionsStep( leg.steps[i] ) );
    return {
        distance: leg.distance,
        duration: leg.duration,
        end_address: leg.end_address,
        end_location: new google.maps.LatLng( leg.end_location.lat, leg.end_location.lng ),
        start_address: leg.start_address,
        start_location: new google.maps.LatLng( leg.start_location.lat, leg.start_location.lng ),
        steps: steps,
        via_waypoints: [],  //ToDo: try with waypoints!
    };
}

// DirectionsRoute -> { bounds: <LatLngBounds>,
//                      copyrights: <string>,
//                      legs: Array <DirectionsLeg>,
//                      overview_path: Array <LatLng>,
//                      warnings: Array <string>,
//                      waypoint_order: Array <number> }
google.maps.DirectionsRoute = function( route ){
    var legs = [];
    for (var i=0; i<route.legs.length; i++)
        legs.push( new google.maps.DirectionsLeg( route.legs[i] ) );
    return {
        bounds: new google.maps.LatLngBounds(
            new google.maps.LatLng( route.bounds.southwest.lat, route.bounds.southwest.lng ),
            new google.maps.LatLng( route.bounds.northeast.lat, route.bounds.northeast.lng )
        ),
        copyrights: route.copyrights,
        legs: legs,
        overview_path: google.maps.geometry.encoding.decodePath( route.overview_polyline.points ),
        warnings: route.warnings,
        waypoint_order: route.waypoint_order
    };
}

// DirectionsResult -> Array <DirectionsRoute>
google.maps.DirectionsResult = function( directionsApiResponse ) {
    var routes = [];
    for (var i=0; i<directionsApiResponse.routes.length; i++)
        routes.push( new google.maps.DirectionsRoute( directionsApiResponse.routes[i] ) );
    return { routes:routes };
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.