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

1.0.11 • 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

Package Sidebar

Install

npm i n7-google-places-autocomplete

Weekly Downloads

8

Version

1.0.11

License

Apache-2.0

Unpacked Size

21.8 kB

Total Files

19

Last publish

Collaborators

  • gabofrontdev