Coder Social home page Coder Social logo

Comments (4)

dpa99c avatar dpa99c commented on May 23, 2024

Hi Wanja,

I originally intended isLocationEnabled() on Android to be an equivalent of the iOS variant - it was intended to mean "is the app good to go for high-accuracy location tracking", e.g. a navigation app. On iOS, isLocationEnabled() returns true if the app is authorized to use location AND location services are enabled. On iOS there's no way to tell if the device is using high-accuracy (GPS) or low-accuracy (network/WiFi) but on Android there is.

I guess I could change the semantics of isLocationEnabled() for Android, but given that many people are using this plugin in their apps, it may cause them issues. So I think maybe it would be better if I explicitly exposed isGpsEnabled() and isNetworkEnabled() via the JS API as isGpsEnabled() and isNetworkLocationEnabled()

Then you could do something like this:

cordova.plugins.diagnostic.isNetworkLocationEnabled(function(networkLocationEnabled){
    cordova.plugins.diagnostic.isGpsEnabled(function(gpsEnabled){
        if(gpsEnabled){
            console.log("High accuracy location enabled");
        }else if(networkLocationEnabled){
            console.log("Low accuracy location enabled");
        }else{
            console.log("No location enabled");
        }
    }, errorCallback);
}, errorCallback);

What do you think?

from cordova-diagnostic-plugin.

iwan-uschka avatar iwan-uschka commented on May 23, 2024

Hey, thanks for answering.
You're totally right. You cannot change 'isLocationEnabled()' if so many people would be affected.
To provide isGpsEnabled() and isNetworkLocationEnabled() via JS API would be great.
Please add this feature.
Thank you for a great plugin anyway.

Cheers from berlin
wanja

from cordova-diagnostic-plugin.

dpa99c avatar dpa99c commented on May 23, 2024

OK, I decided to update isLocationEnabled() on Android to return true either if GPS or network location is enabled. This is consistent with the iOS implementation. I've also added functions to individually check GPS and Network location states on Android. This has been done as a major version increase to 2.0.0, so anyone relying on the old interface can use cordova.plugins.diagnostic@1

from cordova-diagnostic-plugin.

iwan-uschka avatar iwan-uschka commented on May 23, 2024

Thanks!

from cordova-diagnostic-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.