1.0.0 • Published 6 years ago

lat-lang-disatnce-calculater v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

What is this?

To calculate distance between two latitudes and longitudes

Installing

$ npm install distanceCalLatLong

Building bundled/minified version (for AMD, etc)

First run npm install to get all of the dependencies, and then run make:

$ npm install
$ make

The bundled and minified files will be in the generated build directory.

Getting Started

var distance = require('distanceCalLatLong');

var latLong1 = {
lat: '',
lng: ''
}
var latLong2 = {
lat: '',
lng: ''
}
var calDistance = distance.calculateDistance(latLong1, latLong2)