Skip to content

derhuerst/isomorphic-location

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.