UNPKG

distance-calculator-openrouteservice

Version:

A free Node.js library to calculate distance between places using OpenRouteService.

10 lines (8 loc) 221 B
import getDistance from './src/index.js'; getDistance("Gorakhpur", "Imphal") .then(result => { console.log("Distance Info:", result); }) .catch(err => { console.error("Error:", err.message); });