1.0.0 • Published 6 years ago

dist-two-points v1.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

dist-two-points

npm CircleCI (all branches) License: MIT

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