Last active
July 18, 2018 05:56
-
-
Save soheil-zz/64e6ef71179c3de72822 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@soheil What is
require('NativeModules').Native
? I can't find any documentation on that.