I want to show the distances between two places on page using Google Maps.
So I have found out how to write the URL, but I don't know how to decode the response and show on my website. Here's what I have so far:
string distancematrix = "http://maps.googleapis.com/maps/api/distancematrix/json? origins=34746+Florida&destinations=Universal+Studios+Florida|Orlando+Internation+Airport&mode=driving&units=imperial&sensor=false";
Json.Write(distancematrix, Response.ToString);
Can I put each of the results into the page using an @
command?