nativescript-last_known_location
nativescript android plugin to get last known location .
npm i --save nativescript-last_known_location
- Version: 1.0.4
- GitHub: https://github.com/andrew4alive/nativescript-last_known_location
- NPM: https://www.npmjs.com/package/nativescript-last_known_location
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
nativescript-last_known_location
import { Last_known_location } from "nativescript-last_known_location";
import { isAndroid, isIOS, device, screen } from "tns-core-modules/platform";
function getlastlocation(){
if( !isAndroid ) return ;
const get_last_location_class=Last_known_location;
var get_last_location = new get_last_location_class();
//optional get_last_location.msg="message when request location permission"
get_last_location.getlocation(
location=>{
console.log("least known location latutide:longitude"+location.getLatitude()+","+location.getLongitude());
},
()=>{ console.log("no permission");}
)
}
(Optional) Prerequisites / Requirements
npm and nativescript install
Installation
tns plugin add nativescript-last_known_location
Usage
API
License
Apache License Version 2.0, January 2004