Giter VIP home page Giter VIP logo

macos-location's Introduction

macos-location

Sponsor Latest version on NPM registy Node.js version License

Wrapper around macOS Core Location services. Can serve as a drop-in replacement for HTML5 Geolocation API in Electron applications.

Note: This module is intended for Electron applications targeted at macOS.

Installation

npm install macos-location --save

or

yarn add macos-location

Usage

This module exports a single getCurrentPosition method that has exactly the same signature as navigator.geolocation.getCurrentPosition.

If you were using HTML5 Geolocation API to retrieve user's location you can simply replace calls to navigator's getCurrentPosition method with this module.

const { getCurrentPosition } = require('macos-location');

function successCallback(position) {
  console.log('Your current position is:');
  console.log(`Latitude : ${position.coords.latitude}`);
  console.log(`Longitude: ${position.coords.longitude}`);
  console.log(`More or less ${position.coords.accuracy} meters.`);
};

function errorCallback(err) {
  console.warn(`ERROR(${err.code}): ${err.message}`);
};

// https://developer.mozilla.org/en-US/docs/Web/API/PositionOptions
const options = {
  maximumAge: 60000,
};

getCurrentPosition(successCallback, errorCallback, options);

If you don't like callbacks, you can wrap the location request in a Promise.

const { getCurrentPosition } = require('macos-location');

const p = new Promise((resolve, reject) => {
  getCurrentPosition(resolve, reject);
});

License

Released under the the MIT License.

macos-location's People

Contributors

bebetoaziz avatar jsynowiec avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.