2017-07-02 91 views
0

我在同一頁面使用了兩個組件,https://angular-maps.com和angular2-google-map-auto-complete。 https://www.npmjs.com/package/angular2-google-map-auto-complete。我定義在這條路上的角度映射鍵:Angular 2:Google Maps和Angular Google Places

AgmCoreModule.forRoot({ 
apiKey: 'API_KEY' 
}) 

而且對索引文件谷歌地圖automplete:

<script src="https://maps.googleapis.com/maps/api/js?key=API_KEY&libraries=places"></script> 

問題是,當我使用的是同一個頁面上的組件拋出錯誤

You have included the Google Maps API multiple times on this page. This may cause unexpected errors. 

我知道是什麼問題,但是,爲了避免錯誤,我定義了單個API_KEY

回答

0

just rem從您的index.html中刪除

<script src="https://maps.googleapis.com/maps/api/js?key=API_KEY&libraries=places"></script> 

並在amgCoreModule聲明中添加您的API密鑰。

相關問題