Ionic2 GeoLocation not working on real device.
See original GitHub issueI’m using Ionic 2 geolocation its working fine in chrome browser (lat & long coming in browser log) but when i run this in real android device, nothing is coming.
platform.ready().then(() => {
Geolocation.getCurrentPosition().then(pos => {
var geoData = {
latitude: pos.coords.latitude,
longitude: pos.coords.longitude
}
var getDataIntoString = JSON.stringify(geoData);
localStorage.setItem('geoDataObject', getDataIntoString);
console.log("asdfasdf" +geoData);
}).catch(err =>{console.error(err)});
StatusBar.styleDefault();
});
writing this code in app.ts file.*
Issue Analytics
- State:
- Created 7 years ago
- Comments:10 (3 by maintainers)
Top Results From Across the Web
Ionic Native Geolocation not working on Android
When I run this as ionic serve in a browser, or I build it and run it on iOS Simulator ( Xcode ),...
Read more >Ionic Geolocation plugin working on browser but not iOS and ...
Hello everybody,. I'm stuck on an issue I've come across and am unsure if it's related to my code or if it's related...
Read more >geolocation not working with android device · Issue #2156
This is an problem with the geolocation plugin source. The ionic native plugin only wraps the cordova plugin.
Read more >Ionic 5- Cordova — Android Geolocation not working - Medium
So this bug was a real pain, and I thought I would write a quick note about how to solve it. Trawling the...
Read more >Ionic 5 Complete guide on Geolocation, permission and auto ...
Learn how to implement geolocation, permissions and auto turn-on GPS in Ionic apps in Cordova or Capacitor, Angular or React.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Try Background Geolocation instead of Geolocation it solved my problem
Thanks for answering! Seems that is a PR for that already… looks like the same case https://github.com/apache/cordova-plugin-geolocation/pull/85
thanks!