DEPRECATED *** Use angular-google-place ***
Issues have been moved to new repo : angular-google-place
n2-google-place-autocomplete is now available as angular-google-place
This is a Google-Autocomplete Module for Angular.
Please feel free to declare issues or contribute : https://github.com/psykolm22/ng2-google-place-autocomplete
Visit our Board
NPM
npm install --save ng2-google-place-autocomplete
YARN
yarn add ng2-google-place-autocomplete --save
- in your index.html:
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=places"></script>
- Use it in your HTML elements, for example:
<input type="text" [(ngModel)] = "address"
[options]='options'
(setAddress) = "getAddress($event)"
(street_number) = 'street_number=$event'
(street)= 'street=$event'
(city)= 'city=$event'
(state)='state=$event'
(district)='district=$event'
(country)='country=$event'
(postal_code)='postal_code=$event'
(lat)='lat=$event'
(lng)='lng=$event'
(adr_address)='adr_address=$event'
(name)='name=$event'
(place_id)='place_id=$event'
(types)='types=$event'
(url)='url=$event'
(utc_offset)='utc_offset=$event'
(vicinity)='vicinity=$event'
(photos)='photos=$event'
(airport)='airport=$event'
(CountryCodes)='CountryCodes=$event'
id="autocomplete"
ng2-google-place-autocomplete/>
- Add GooglePlaceModule in your app.module.ts:
import {GooglePlaceModule} from 'ng2-google-place-autocomplete';
@NgModule({
...
import: [..., GooglePlaceModule]
})
#Options Options for Google Search
- Choose one type from
[ '(cities)', '(regions)', 'country', 'postal_code', 'sublocality', 'establishment', 'address', 'geocode']
- country ( dynamic change allow) : CountryCode ISO 3166-1 Alpha-2 ( see demo )
[options]="{
types: [],
componentRestrictions: { country: 'FR' }
}"
#Tested in:
- Chrome
- Firefox
- Safari
#For AngularJS: https://github.com/vskosp/vsGoogleAutocomplete