distance-by-name
v1.0.7
Published
A module to calculate distance and duration between two places using OpenRouteService API.
Maintainers
Readme
Distance By Name
A Node.js module to find the distance and estimated travel time between two places using OpenRouteService API.
🚀 Installation
const { getDistanceByName } = require("distance-by-name");
const { origin, destination } = req.body;
const result = await getDistanceByName(origin, destination);