Find Distance Between Two Points with Apps Script

Curious to know how far is location A from location B? You can put the two places in separate cells in a Google Spreadsheet and then use the getDirection() function to find the distance between the two place in miles or kilometers.

Internally, it uses the Google Maps service of Apps Script to find the distance and directions between the two points. You can also use the getMileage() function to calculate the “as the crow flies” distance between any two latitude and longitude co-ordinates.

function getDirection(city1, city2) {
  var directions = Maps.newDirectionFinder()
    .setOrigin(city1)
    .setDestination(city2)
    .setMode(Maps.DirectionFinder.Mode.DRIVING)
    .getDirections();

  var d = directions.routes[0].legs[0].distance.text;

  return parseInt(d.split(' ')[0].replace(',', ''));
}

function getMileage(city1, city2) {
  var p1 = Maps.newGeocoder().geocode(city1);
  var p2 = Maps.newGeocoder().geocode(city2);

  return getDistance(getCoordinates(p1), getCoordinates(p2), opt);
}

function getCoordinates(point) {
  var result = point.results[0].geometry.location;

  return { lng: result.lng, lat: result.lat };
}

function getDistance(c1, c2, opt) {
  var lat1 = rad(c1.lat),
    lat2 = rad(c2.lat);
  var lng1 = rad(c1.lng),
    lng2 = rad(c2.lng);
  var dLng = lng2 - lng1,
    dLat = lat2 - lat1;
  var R = 6371 / 1.6;

  var a =
    Math.sin(dLat / 2) * Math.sin(dLat / 2) + Math.sin(dLng / 2) * Math.sin(dLng / 2) * Math.cos(lat1) * Math.cos(lat2);
  var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));

  return parseInt(R * c);
}

function rad(degrees) {
  return (degrees * Math.PI) / 180;
}

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻