question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Ionic2 GeoLocation not working on real device.

See original GitHub issue

I’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:closed
  • Created 7 years ago
  • Comments:10 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
manish29ifycommented, May 10, 2018

Try Background Geolocation instead of Geolocation it solved my problem

1reaction
mariohmolcommented, Mar 6, 2017

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!

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found