Google Angular 中的地图自动完成

Google map autocomplate in Angular

我可以在 HTML 中使用 google map 自动完成功能,但是当我尝试在 ng-template 中使用它时,它在我在网络中看到但无法看到下拉结果.

    <ng-template>
            <input ngx-google-places-autocomplete [options]='options' #placesRef="ngx-places" 
            (onAddressChange)="handleAddressChange($event)"/>
    </ng-template>

谢谢

我用 CSS 解决了这个问题。它在 ng-template 背后工作。我添加了以下代码。

  ::ng-deep .pac-container {
      z-index: 100000;
  }