Skip to content

Instantly share code, notes, and snippets.

@soheil-zz
Last active July 18, 2018 05:56
Show Gist options
  • Save soheil-zz/64e6ef71179c3de72822 to your computer and use it in GitHub Desktop.
Save soheil-zz/64e6ef71179c3de72822 to your computer and use it in GitHub Desktop.
this.watchID = navigator.geolocation.watchPosition((lastPosition) => {
var native = require('NativeModules').Native;
native.locationFromLatitude(lastPosition.coords.latitude, lastPosition.coords.longitude)
});
var subscription = require('RCTDeviceEventEmitter').addListener(
'LocationInfo',
(location) => console.log(location.cityName)
);
@AndrewHenderson
Copy link

@soheil What is require('NativeModules').Native? I can't find any documentation on that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment