Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Calculate distance between two addresses / points / locations using Google map API.

    • 0
    • 0
    • 0
    • 0
    • 1
    • 0
    • 0
    • 0
    • 3.2k
    Comment on it

    Hello Readers ,

    In this blog we are calculating distance between two address / points / locations using Google Maps V3 API.

    First we have one small HTML having source and destination fields after clicking the submit function "GetRoute" is called and do the process.

    1. <table border="0" cellpadding="0" cellspacing="3">
    2. <tr>
    3. <td colspan="2">
    4. Source:
    5. <input type="text" id="txtSource" value="" style="width: 200px" />
    6. &nbsp; Destination:
    7. <input type="text" id="txtDestination" value="" style="width: 200px" />
    8. <br />
    9. <input type="button" value="Get Route" onclick="GetRoute()" />
    10. <hr />
    11. </td>
    12. </tr>
    13. <tr>
    14. <td colspan="2">
    15. <div id="dvDistance">
    16. </div>
    17. </td>
    18. </tr>
    19. <tr>
    20. <td>
    21. <div id="dvMap" style="width: 500px; height: 500px">
    22. </div>
    23. </td>
    24. <td>
    25. <div id="dvPanel" style="width: 500px; height: 500px">
    26. </div>
    27. </td>
    28. </tr>
    29. </table>
    30.  

    When the Button is clicked, first the Map and the Directions service is initialized to display the map and the directions in their respective HTML DIVs. 

    Then fetching the source and destination values from the textboxes the details of the directions, route, distance and duration are displayed inside the respective HTML DIVs.

    1. <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"></script>
    2. <script type="text/javascript">
    3. var source, destination;
    4. var directionsDisplay;
    5. var directionsService = new google.maps.DirectionsService();
    6. google.maps.event.addDomListener(window, 'load', function () {
    7. new google.maps.places.SearchBox(document.getElementById('txtSource'));
    8. new google.maps.places.SearchBox(document.getElementById('txtDestination'));
    9. directionsDisplay = new google.maps.DirectionsRenderer({ 'draggable': true });
    10. });
    11. function GetRoute() {
    12. map = new google.maps.Map(document.getElementById('dvMap'), mapOptions);
    13. directionsDisplay.setMap(map);
    14. directionsDisplay.setPanel(document.getElementById('dvPanel'));
    15. //*********DIRECTIONS AND ROUTE**********************//
    16. source = document.getElementById("txtSource").value;
    17. destination = document.getElementById("txtDestination").value;
    18. var request = {
    19. origin: source,
    20. destination: destination,
    21. travelMode: google.maps.TravelMode.DRIVING
    22. };
    23. directionsService.route(request, function (response, status) {
    24. if (status == google.maps.DirectionsStatus.OK) {
    25. directionsDisplay.setDirections(response);
    26. }
    27. });
    28. //*********DISTANCE AND DURATION**********************//
    29. var service = new google.maps.DistanceMatrixService();
    30. service.getDistanceMatrix({
    31. origins: [source],
    32. destinations: [destination],
    33. travelMode: google.maps.TravelMode.DRIVING,
    34. unitSystem: google.maps.UnitSystem.METRIC,
    35. avoidHighways: false,
    36. avoidTolls: false
    37. }, function (response, status) {
    38. if (status == google.maps.DistanceMatrixStatus.OK && response.rows[0].elements[0].status != "ZERO_RESULTS") {
    39. var distance = response.rows[0].elements[0].distance.text;
    40. var duration = response.rows[0].elements[0].duration.text;
    41. var dvDistance = document.getElementById("dvDistance");
    42. dvDistance.innerHTML = "";
    43. dvDistance.innerHTML += "Distance: " + distance + "<br />";
    44. dvDistance.innerHTML += "Duration:" + duration;
    45. } else {
    46. alert("Unable to find the distance via road.");
    47. }
    48. });
    49. }
    50. </script>
    51.  

     

    That's it we all have in it.

 1 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: