0.0.1 • Published 12 years ago

address-gps v0.0.1

Weekly downloads
4
License
-
Repository
github
Last release
12 years ago

address-gps

NPM

Retrieve GPS coordinates and readable address for a given address via the Google maps API

var addressGPS = require('address-gps');
var address = "90210";

addressGPS.getGPS(address, function(location){
  console.log(location.prettyAddress + " is at : ", location.latitude, ", " + location.longitude);
});