react-native-geolocation-service icon indicating copy to clipboard operation
react-native-geolocation-service copied to clipboard

GPS location updating without network and WiFi is possible in IOS?

Open ramkey-akil opened this issue 5 years ago • 2 comments

ramkey-akil avatar Oct 03 '19 16:10 ramkey-akil

You already created and issue for this here: https://github.com/Agontuk/react-native-geolocation-service/issues/129

Add some more details in that one instead. For example what you have tried or what you are trying to do.

oakis avatar Oct 04 '19 09:10 oakis

Geolocation.watchPosition((position)=>{ var lat = parseFloat(position.coords.latitude) var long = parseFloat(position.coords.longitude) console.log(lat+" "+long) }, (error) => console.log(JSON.stringify(error)), {enableHighAccuracy: true,distanceFilter:0,interval:1000,} )

Location is not getting from the watchposition , when network is not available

ramkey-akil avatar Oct 04 '19 10:10 ramkey-akil