Cordova plugin to get current loction using Native Location Manager.
##### Platforms
- Android
cordova plugin add https://github.com/uzumakinaruto123/NativeGeo.git
declare var NativeGeo:any;
...
NativeGeo.getCurrentLocation((res)=>{
console.log(res.latitude+', '+res.longitude);
},(err)=>{
console.log('Error getting location', err);
});
Application should have Location permissions to get current location