An open API service indexing awesome lists of open source software.

https://github.com/cloakedninjas/cordova-plugin-country

Cordova plugin to determine country without cellular network or GPS
https://github.com/cloakedninjas/cordova-plugin-country

Last synced: 23 days ago
JSON representation

Cordova plugin to determine country without cellular network or GPS

Awesome Lists containing this project

README

        

# cordova-plugin-country

Get the 2-letter ISO code from Android's Locale package. Useful when your device may not have GPS or cellular data.

## Usage #

```javascript
function success (countryCode) {
console.log(countryCode);
}

function error () {
console.warn('An error occured');
}

plugins.country.get(success, error);
```