npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-cross-geolocation

v1.1.0

Published

React Native Geolocation complatible module that uses the new Google Location API on Android devices.

Downloads

115

Readme

react-native-cross-geolocation

npm License

React Native Geolocation complatible module that uses the new Google Play services location API on Android devices.

If this library has helped you, please support my work with a star or buy me a coffee.

IMPORTANT

This module was tested with React Native 0.59.0, but it should work smoothly with apps that use Gradle 4.6 or later.

* For previous Gradle versions use react-native-cross-geolocation v1.0.6 or bellow.

Setup

yarn add react-native-cross-geolocation
react-native link react-native-cross-geolocation

Play Services Location Version

From v1.1.0, react-native-cross-geolocation supports the global variable playServicesLocationVersion to specify the version of 'com.google.android.gms:play-services-location' to use. It defaults to 16.0.0

Configuration and Permissions

This section only applies to projects made with react-native init or to those made with Create React Native App which have since ejected. For more information about ejecting, please see the guide on the Create React Native App repository.

iOS

You need to include the NSLocationWhenInUseUsageDescription key in Info.plist to enable geolocation when using the app. Geolocation is enabled by default when you create a project with react-native init.

In order to enable geolocation in the background, you need to include the 'NSLocationAlwaysUsageDescription' key in Info.plist and add location as a background mode in the 'Capabilities' tab in Xcode.

Android

To request access to location, add the following line to your app's AndroidManifest.xml:

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

Android API >= 18 Positions will also contain a mocked boolean to indicate if position was created from a mock provider. Android API >= 23 Permissions are handled automatically.

Methods

Reference

Methods

setRNConfiguration()

Geolocation.setRNConfiguration(config);

Sets configuration options that will be used in all location requests.

Parameters:

NAME | TYPE | REQUIRED | DESCRIPTION ---- | ---- | -------- | ----------- config | object | Yes | See below.

Supported options:

  • skipPermissionRequests (boolean, iOS-only) - Defaults to false. If true, you must request permissions before using Geolocation APIs.
  • lowAccuracyMode (number, Android-only) - Defaults to LowAccuracyMode.BALANCED.
  • fastestInterval (number, Android-only) - Defaults to 10000 (10 secs).
  • updateInterval (number, Android-only) - Defaults to 5000 (5 secs).

requestAuthorization()

Geolocation.requestAuthorization();

Request suitable Location permission based on the key configured on pList. If NSLocationAlwaysUsageDescription is set, it will request Always authorization, although if NSLocationWhenInUseUsageDescription is set, it will request InUse authorization.

getCurrentPosition()

Geolocation.getCurrentPosition(geo_success, [geo_error], [geo_options]);

Invokes the success callback once with the latest location info.

Parameters:

NAME | TYPE | REQUIRED | DESCRIPTION ---- | ---- | -------- | ----------- geo_success | function | Yes | Invoked with latest location info. geo_error | function | No | Invoked whenever an error is encountered. geo_options | object | No | See below.

Supported options:

  • timeout (ms) - Defaults to MAX_VALUE
  • maximumAge (ms) - Defaults to INFINITY.
  • enableHighAccuracy (bool) - On Android, if the location is cached this can return almost immediately, or it will request an update which might take a while.

watchPosition()

Geolocation.watchPosition(success, [error], [options]);

Invokes the success callback whenever the location changes. Returns a watchId (number).

Parameters:

NAME | TYPE | REQUIRED | DESCRIPTION ---- | ---- | -------- | ----------- success | function | Yes | Invoked whenever the location changes. error | function | No | Invoked whenever an error is encountered. options | object | No | See below.

Supported options:

  • timeout (ms) - Defaults to MAX_VALUE.
  • maximumAge (ms) - Defaults to INFINITY.
  • enableHighAccuracy (bool) - Defaults to false.
  • distanceFilter (m) - Defaults to 100.
  • useSignificantChanges (bool) (unused in Android).

clearWatch()

Geolocation.clearWatch(watchID);

Parameters:

NAME | TYPE | REQUIRED | DESCRIPTION ---- | ---- | -------- | ----------- watchID | number | Yes | Id as returned by watchPosition().

stopObserving()

Geolocation.stopObserving();

Stops observing for device location changes. In addition, it removes all listeners previously registered.

Notice that this method has only effect if the geolocation.watchPosition(successCallback, errorCallback) method was previously invoked.

Constants

rnCrossGeolocation exports a LowAccuracyMode object with values to be used in the lowAccuracyMode property of the parameter sent to setRNConfiguration:

NAME | DETAILS ---- | ------- LowAccuracyMode.BALANCED(102)This is the default mode. | Request location precision to within a city block, which is an accuracy of approximately 100 meters.This is considered a coarse level of accuracy, and is likely to consume less power. With this setting, the location services are likely to use WiFi and cell tower positioning. Note, however, that the choice of location provider depends on many other factors, such as which sources are available. LowAccuracyMode.LOW_POWER(104) | Request city-level precision, which is an accuracy of approximately 10 Km.This is considered a coarse level of accuracy, and is likely to consume less power. LowAccuracyMode.NO_POWER(105) | Use this if you need negligible impact on power consumption, but want to receive location updates when available.With this setting, your app does not trigger any location updates, but receives locations triggered by other apps.

NOTE: These constants are only for Android, on iOS they are undefined.

TODO

  • [ ] Tests

Support my Work

I'm a full-stack developer with more than 20 year of experience and I try to share most of my work for free and help others, but this takes a significant amount of time and effort so, if you like my work, please consider...

Of course, feedback, PRs, and stars are also welcome 🙃

Thanks for your support!