distance-matrix-api
v1.0.0
Published
A Node.js wrapper for Distance Matrix API offered by DistanceMatrixAPI.com
Downloads
119
Maintainers
Readme
Node.js wrapper for Distance Matrix API offered by www.DistanceMatrixAPI.com
The Distance Matrix API is a service offered by www.DistanceMatrixAPI.com that provides travel distance and time for a matrix of origins and destinations. The information returned is based on the recommended route between start and end points, as calculated by the DistanceMatrixAPI, and consists of rows containing duration and distance values for each pair.
Please refer to Distance Matrix API documentation for further details on request parameters and response format.
Unlike similar modules, this one accepts multiple origins and the result data is just like the one returned by the API.
Installation
npm install distance-matrix-api
Usage
var distance = require('distance-matrix-api');
var origins = ['San Francisco CA'];
var destinations = ['New York NY', '41.8337329,-87.7321554'];
distance.matrix(origins, destinations, function (err, distances) {
if (!err)
console.log(distances);
})
Parameters
API Key
You can get the key for free without credit cards by registering at distancematrixapi.com
- There are 2 options to define the key:
- Create an environment variable
API_KEY
, or... - Programatically:
distance.key('YOUR-API-KEY');
I
Options
Mode (optional): driving | walking | bicycling | transit
, default driving
distance.mode('driving');
Language (optional): default en
distance.language('pt');
Avoid (optional): tolls | highways | ferries | indoor
, default: null
distance.avoid('tolls');
Units (optional): metric | imperial
, default: metric
distance.units('imperial');
Departure time (optional): desired time of departure as seconds since midnight, January 1, 1970 UTC
distance.departure_time(1404696787);
Arrival time (optional): desired time of arrival as seconds since midnight, January 1, 1970 UTC
distance.arrival_time(1404696787);
Traffic model (this parameter may only be specified for requests where the travel mode is driving
, and where the request includes a departure_time
): best_guess | pessimistic | optimistic
, default best_guess
distance.traffic_model('optimistic');
Transit mode (this parameter may only be specified for requests where the mode
is transit
): bus | subway | train | tram | rail
distance.transit_mode('rail');
Transit routing preference (this parameter may only be specified for requests where the mode
is transit
): less_walking | fewer_transfers
distance.transit_routing_preference('fewer_transfers');
Origins
An array of one or more addresses and/or textual latitude/longitude values from which to calculate distance and time. If you pass an address as a string, the service will geocode the string and convert it to a latitude/longitude coordinate to calculate directions. If you pass coordinates, ensure that no space exists between the latitude and longitude values.
...
var origins = ['San Francisco CA', '40.7421,-73.9914'];
...
Destinations
An array of one or more addresses and/or textual latitude/longitude values to which to calculate distance and time. If you pass an address as a string, the service will geocode the string and convert it to a latitude/longitude coordinate to calculate directions. If you pass coordinates, ensure that no space exists between the latitude and longitude values.
...
var destinations = ['New York NY', 'Montreal', '41.8337329,-87.7321554', 'Honolulu'];
...
Example
var distance = require('distance-matrix-api');
var origins = ['San Francisco CA', '40.7421,-73.9914'];
var destinations = ['New York NY', 'Montreal', '41.8337329,-87.7321554', 'Honolulu'];
distance.key('<Your API key here>');
distance.units('imperial');
distance.matrix(origins, destinations, function (err, distances) {
if (err) {
return console.log(err);
}
if(!distances) {
return console.log('no distances');
}
if (distances.status == 'OK') {
for (var i=0; i < origins.length; i++) {
for (var j = 0; j < destinations.length; j++) {
var origin = distances.origin_addresses[i];
var destination = distances.destination_addresses[j];
if (distances.rows[0].elements[j].status == 'OK') {
var distance = distances.rows[i].elements[j].distance.text;
console.log('Distance from ' + origin + ' to ' + destination + ' is ' + distance);
} else {
console.log(destination + ' is not reachable by land from ' + origin);
}
}
}
}
});