1.2.2 • Published 4 years ago

@tulpep/foundit-geolocation v1.2.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

FOUNDiT Geolocation Module

Module to obtain the coordinates of a device.

Supported Operating Systems

  • Windows
  • Linux

How to Install it

npm install @tulpep/foundit-geolocation

Available Methods

getNativeCoordinates()

This method provides information about the device's location, such as latitude and longitude.

The function does not require parameters, it is responsible for identifying whether the operating system is Windows or Linux and returns an object with the location data, which includes longitude, latitude.

function GetCoordinates()

Example return for Windows

    { 
        latitude: '4.84908701281889',
        longitude: '-74.0549017722177',
        altitude: '0',
        horizontalAccuracy: '83',
        verticalAccuracy: 'null' 
    }

Example return for Linux

    { 
        latitude: 4.8588,
        longitude: -74.0587,
        altitude: undefined,
        horizontalAccuracy: 9007199254740991,
        verticalAccuracy: 9007199254740991 
    }

How To Use it:

npm run test

const getCurrentLocation = async () => {
  const result = await geolocation.GetNativeCoordinates();
  console.log(result);
};
getCurrentLocation();

Dependencies

  • @tulpep/foundit-cross | License MIT: This module to execute commads to operating system and validate platform.

  • arch | License MIT: This module is used by WebTorrent Desktop to determine if the user is on a 32-bit vs. 64-bit operating system to offer the right app installer.

  • axios | License MIT: This module use promise based HTTP client for the browser.

  • is-elevated | License MIT: Check if the process is running with elevated privileges.