dist-two-points
v1.0.0
Published
A JavaScript utility for finding the distance between two points given latitude and longitude
Downloads
3
Maintainers
Readme
dist-two-points
A JavaScript utility for finding the distance between two points given latitude and longitude.
Install
$ npm install --save dist-two-points
or
$ yarn add dist-two-points
Usage
import distanceBetweenPoints from 'dist-two-points';
const dist = distanceBetweenPoints(37.4219752, -122.084076, 37.3348136, -122.0091032);
The function will return a Number value in meters.
Contributing
Create an Issue if there is not already one created. Open up a Pull Request against master
with your fix branch.
Install Dependencies
$ npm install
Run Tests
$ npm test
Run a babel transpile
$ npm run build