Having trouble with my Google Places search integration in Angular 2.
<input type="text" type="text" class="form-control" placeholder="Address" [ngClass]="{active:signupSubmitted && !signUpForm.controls['formatted_address'].valid}"
[formControl]="signUpForm.controls['formatted_address']" [(ngModel)]="data.formatted_address"
(setAddress)="getAddress($event)" googleplace/>
I've also added this to my CSS:
.pac-container {
z-index: 1100 !important;
}
However, it's not working as expected. Can anyone provide some assistance? Thank you!