nativescript-google-places-autocomplete
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Nativescript Google Places Autocomplete

npm version Twitter Follow

Add location autocomplete to your Nativescript application

Prerequisites

Create and grap your Api key from https://developers.google.com/maps/documentation/javascript/get-api-key?hl=en

Installation

tns plugin add nativescript-google-places-autocomplete

Usage

    import { GooglePlacesAutocomplete } from 'nativescript-google-places-autocomplete';
    
    let API_KEY = "your_api_Key";
    let googlePlacesAutocomplete = new GooglePlacesAutocomplete(API_KEY);
 
    googlePlacesAutocomplete.search(params)
          .then((places: any) => {
              // place predictions list
           }, (error => {
              console.log(error)
          }));
          
    googlePlacesAutocomplete.getPlaceById(place.placeId).then((place) => {
       .then(function () { });
        }, error => {
            console.log(error)
        })        

Plugin Auther : Aymen Labidi

License

Apache License Version 2.0, January 2004

Dependencies (0)

    Dev Dependencies (6)

    Package Sidebar

    Install

    npm i nativescript-google-places-autocomplete

    Weekly Downloads

    14

    Version

    1.0.3

    License

    Apache-2.0

    Last publish

    Collaborators

    • labidiaymen