@rainder/where-am-i
v0.0.1
Published
Detects the geolocation of a MAC computer
Downloads
2
Readme
Where Am I?
const whereAmI = require('@rainder/where-am-i');
whereAmI.getLocation().then((location) => {
location === {
point: GeoPoint, //lat, lng
accuracy: Number, //in meters
timestamp: Date,
};
});