Google Autocomplete
Implement a search bar with autocomplete functionality that matches places catalogued by Google


Last updated
Was this helpful?
Implement a search bar with autocomplete functionality that matches places catalogued by Google


Last updated
Was this helpful?
Was this helpful?
import { MapsAPILoader } from '@agm/core';const autocomplete = new google.maps.places.Autocomplete(nativeHomeInputBox, {
types: ['address']
});
autocomplete.addListener('place_changed', () => {
this.ngZone.run(() => {
const place: google.maps.places.PlaceResult = autocomplete.getPlace();
this.query = place['formatted_address'];
});
});