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

rn-geolocation

v0.0.6

Published

Geolocation for react native android

Downloads

4

Readme

#RN-Geolocation

NOTE: React Native 0.15 already has the geolocation module implemented for Android.


This package is deprecated as geolocation module was implemented in RN 0.15

Disclaimer: This package is based on code from Corentin Smith. All java files were originally written by him. Kudos to you.

RN-Geolocation is a native module for React Native, that exposes the GoogleApi geolocation. It can be used to determine the users location. This repository contains an example of the code (see last section of this read me), but the package can also be installed on its own.

Installing rn-geolocation in your own project

Before you install this package, be sure that you have installed all tools necessary for React Native Android and the Google Repository and Google Play Services dependency.

To use it do:

npm install --save rn-geolocation

In your settings.gradle replace include ':app' with:

include ':rn-geolocation',':app'
project(':rn-geolocation').projectDir = new File(rootProject.projectDir, '../node_modules/rn-geolocation/android')

In your android/app/build.gradle add:

dependencies {
  ...
  compile project(':rn-geolocation')
}

And finally register the package in your MainActivity.java

...
import com.facebook.soloader.SoLoader;
import com.tiagojdferreira.RNGeolocationPackage; // <-- import

public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler {

    private ReactInstanceManager mReactInstanceManager;
    private ReactRootView mReactRootView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mReactRootView = new ReactRootView(this);

        mReactInstanceManager = ReactInstanceManager.builder()
                .setApplication(getApplication())
                .setBundleAssetName("index.android.bundle")
                .setJSMainModuleName("index.android")
                .addPackage(new MainReactPackage())
                .addPackage(new RNGeolocationPackage()) // <-- import
                .setUseDeveloperSupport(BuildConfig.DEBUG)
                .setInitialLifecycleState(LifecycleState.RESUMED)
                .build();

        mReactRootView.startReactApplication(mReactInstanceManager, "testGeolocation", null);

        setContentView(mReactRootView);
    }
    ...
}

Now that you've installed it, just require it, and use getCurrentPosition to recover latitude and longitude:

var React = require('react-native');
var rnGeolocation = require('rn-geolocation');

...

rnGeolocation.getCurrentPosition(
      (position) => callback(position)
)

Latitude and longitude can be recovered as:

position.coords.longitude
position.coords.latitude

Running the example

First, clone this repo and go to the example folder and install the project:

git clone https://github.com/Tiagojdferreira/rn-geolocation.git
cd rn-geolocation/example
npm install

npm install may take a while, as react is being installed. Once it is done, to run the app on device, do:

adb reverse tcp:8081 tcp:8081
react-native run-android