Google Maps мест автозаполнения addEventListener не работает
Я пытался добавить Google Maps мест, автозаполнение в проекте ionic 2, чтобы обновить местоположение пользователя. Однако, addEventListener, кажется, не работает, и нет никаких ошибок консоли, может кто-нибудь сказать мне, где я иду неправильно?
ngAfterViewInit() {
let input = < HTMLInputElement > document.getElementById("auto");
console.log('input', input);
let options = {
componentRestrictions: {
country: 'IN',
types: ['(regions)']
}
}
let autoComplete = new google.maps.places.Autocomplete(input, options);
console.log('auto', autoComplete);
google.maps.event.addListener(autoComplete, 'place_changed', function() {
this.location.loc = autoComplete.getPlace();
console.log('place_changed', this.location.loc);
});
}
<ion-label stacked>Search Location</ion-label>
<input type="text" id="auto" placeholder="Enter Search Location" [(ngModel)]="location.loc" />
index.html
<script src="https://maps.googleapis.com/maps/api/js?key=xxxxxxxxxxxxxx&libraries=places"></script>
2 ответа
Решение
Вы можете использовать функцию стрелки, чтобы сохранить this
а также ChangeDetectionRef
обнаружить изменения, потому что события карты Google запускаются за пределами угловой зоны:
constructor(private cd: ChangeDetectorRef) { }
google.maps.event.addListener(autoComplete, 'place_changed', () => { // arrow function
this.location.loc = autoComplete.getPlace();
this.cd.detectChanges(); // detect changes
console.log('place_changed', this.location.loc);
});
autoComplete.getPlace();
возвращает объект, поэтому вы можете получить адрес следующим образом:
var place = autoComplete.getPlace();
this.location.loc = place.formatted_address;
Попробуйте, проверив place_changed
событие на autoComplete
с компонентом ниже:
import {Component, ViewChild, ChangeDetectorRef} from '@angular/core';
@Component({
selector: 'my-app',
template: `
<div>
<input #auto />
{{ location?.formatted_address | json}}
</div>
`,
})
export class App {
@ViewChild('auto') auto:any;
location: any;
constructor(private ref: ChangeDetectorRef) {
}
ngAfterViewInit(){
let options = {
componentRestrictions: {
country: 'IN'
}
};
let autoComplete = new google.maps.places.Autocomplete(this.auto.nativeElement, options);
console.log('auto', autoComplete);
autoComplete.addListener('place_changed', () => {
this.location = autoComplete.getPlace();
console.log('place_changed', this.location);
this.ref.detectChanges();
});
}
}
Как place_changed
это срабатывает вне углового JS, мы должны запустить обнаружение углового изменения с ChangeDetectorRef
вручную.