angular-magic / ngx-gp-autocomplete

16 stars 4 forks source link

ngx-gp-autocomplete

Ngx-Markdown Logo

Demo: https://ngx-gp-autocomplete.angularmagic.com

This module is a wrapper for Google Places Autocomplete js library. Initial code base was copied from this project ngx-google-places-autocomplete, this module applies some fixes and improvements. Like @types/google.maps and @googlemaps/js-api-loader

NPM

Installation

npm

npm install -S @angular-magic/ngx-gp-autocomplete
npm install -S @googlemaps/js-api-loader
npm install -D @types/google.maps

Integration

import { NgxGpAutocompleteModule } from "@angular-magic/ngx-gp-autocomplete";

@NgModule({
  imports: [
    NgxGpAutocompleteModule,
    BrowserModule,
    FormsModule,
    //...
  ],
  providers: [
    {
      provide: Loader,
      useValue: new Loader({
        apiKey: 'YOUR_API_KEY',
        libraries: ['places']
      })
    },
    //...
  ],
  //...
})
<input #placesRef="ngx-places" ngx-gp-autocomplete [options]='options' (onAddressChange)="handleAddressChange($event)"/>

GitHub

Please feel free to declare issues or contribute: https://github.com/angular-magic/ngx-gp-autocomplete