isomorphic-location

0.2.1 • Public • Published

isomorphic-location

Get your current location in Node & Browser, using location in Node and browser-location in the browser.

npm version build status dependency status dev dependency status ISC-licensed chat on gitter support me on Patreon

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.

Package Sidebar

Install

npm i isomorphic-location

Weekly Downloads

0

Version

0.2.1

License

ISC

Unpacked Size

3.49 kB

Total Files

5

Last publish

Collaborators

  • derhuerst