1.0.4 • Published 4 years ago

nativescript-last_known_location v1.0.4

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

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

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago