How To Integrate Google Places Autocomplete in Angular 2022
Google Place Library enables your application to search for places(geographic locations). In this article, we will integrate google place autocomplete in the angular project.
1. Let's install @angular/cli package.
2. Create a new angular project.
3. Install ngx-google-places-autocomplete package.
4. Import GooglePlaceModule in your module.
5. Open angular.json and add ngx-google-places-autocomplete inside allowedCommonJsDependencies
6. Install @types/googlemaps package.
7. Open tsconfig.app.json and update "types" property to ["googlemaps"] inside compilerOptions.
8. Next, we need to add Google Map javascript API. You can do this by three ways
(a). Script Tag
(a1). src/index.html
In this way, the google library is ready on app load in the browser.
(a2). src/app/app.component.html
(a3). src/app/app.component.ts
(a4). start your application and test it in the browser.
(b). Angular Google Maps (AGM)
(b1). Install @agm/core package
Note:- Latest version of @agm/core has a few bugs also it's in the beta state. so install version 1.1.0.
If you got "Generic type ‘ModuleWithProviders‘ requires 1 type argument(s)” error. then add "skipLibCheck": true inside compilerOptions.
(b2). Import AgmCoreModule in your module.
(b3). src/app/app.component.html
(b4). src/app/app.component.ts
(b5). start your application and test it in the browser.
(c). Custom Script Loader - Manually Inject Script.
(c1). src/app/app.component.html
(c2). src/app/app.component.ts
(c3). start your application and test it in the browser.

Extras:- Place API Options
1. You can pass multiple countries in options.
2. You can also pass place types in options.
Ref: Checkout https://developers.google.com/maps/documentation/javascript/supported_types
3. If you need to use place autocomplete inside a modal(popup). then you need to increase the z-index of .pac-container
style.css
Checkout my full angular-google-places-autocomplete example.
https://github.com/ultimateakash/angular-google-places-autocomplete
If you facing any issues. don't hesitate to comment below. I will be happy to help you.
Thanks.
How To Integrate Google Maps in Angular with Angular Google Maps 2022
Leave Your Comment