0.2.1 • Published 7 years ago
isomorphic-location v0.2.1
isomorphic-location
Get your current location in Node & Browser, using location
in Node and browser-location
in the browser.
Installing
npm install isomorphic-location
Usage
const location = require('isomorphic-location')
location((err, loc) => {
if (err) console.error(err)
else console.log(loc)
})
This will give you something similar to the following:
{
latitude: 52.547172,
longitude: 13.347745,
precision: 65, // in meters
native: true
}
API
location([timeout], cb)
timeout
is in milliseconds, optional and 10 * 1000
by default. cb(err, loc)
follows the Node callback convention.
Contributing
If you have a question, found a bug or want to propose a feature, have a look at the issues page.