Skip to content

Instantly share code, notes, and snippets.

@vanjikumaran
Last active July 14, 2021 13:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vanjikumaran/7126985 to your computer and use it in GitHub Desktop.
Save vanjikumaran/7126985 to your computer and use it in GitHub Desktop.
Very basic sample for google distance matrix
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var origin = "Colombo, Srilanka",
destination = "Stockholm, Sweden",
service = new google.maps.DistanceMatrixService();
service.getDistanceMatrix(
{
origins: [origin],
destinations: [destination],
travelMode: google.maps.TravelMode.DRIVING,
avoidHighways: false,
avoidTolls: false
},
callback
);
function callback(response, status) {
var orig = document.getElementById("orig"),
dest = document.getElementById("dest"),
dist = document.getElementById("dist");
if(status=="OK") {
dest.value = response.destinationAddresses[0];
orig.value = response.originAddresses[0];
dist.value = response.rows[0].elements[0].distance.text;
} else {
alert("Error: " + status);
}
}
</script>
</head>
<body>
<br>
Very simple HTML sample for using the Google Distance Matrix API.<br><br>
<table border="0">
<tr>
<td>Origin</td>
<td><input id="orig" type="text" style="width:35em"></td>
</tr>
<tr>
<td>Destination</td>
<td><input id="dest" type="text" style="width:35em"></td>
</tr>
<tr>
<td>Distance</td>
<td><input id="dist" type="text" style="width:35em"></td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment