RuniVN / GeoDistance

Geographical Lat, Lng distance

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status devDependency Status Monthly downloads Coverage Status License

GeoDistance.js

A Node.js module which takes 2 Lat+Lng (Geolocation) points and returns the distance between the two points in Meters

Installation

npm install geo-distance-js


Function getDistance(toLat, toLng, fromLat, fromLng);

Add the module as a variable in your .js file

var dist = require('geo-distance-js');

Run the function with

dist.getDistance(toLat, toLng, fromLat, fromLng);

About

Geographical Lat, Lng distance

License:MIT License


Languages

Language:JavaScript 100.0%