Angular 5 - 谷歌未定义(谷歌地图)

ada*_*ski 5 google-maps google-maps-api-3 npm typescript angular

我想在我的 Angular 5 应用程序上使用谷歌地图,但我遇到了一些问题。

加载视图时,我在 js 控制台中收到错误:

LoginComponent_Host.ngfactory.js? [sm]:1 ERROR ReferenceError: google is not defined 
at LoginComponent.ngAfterViewInit (login.component.ts:15) 
at callProviderLifecycles (core.js:12428)..
Run Code Online (Sandbox Code Playgroud)

我的组件:

  import {AfterViewInit, Component} from '@angular/core';
    declare let google: any;

    @Component({
      selector: 'app-login',
      templateUrl: './login.component.html',
      styleUrls: ['./login.component.css']
    })
    export class LoginComponent implements AfterViewInit {

       ngAfterViewInit(): void {
          let origin = new google.maps.LatLng(4.0, 2.0 );
          let destination = new google.maps.LatLng(1.0, 1.5);
       }

       constructor() {}
    }
Run Code Online (Sandbox Code Playgroud)

app.module.ts

import {AgmCoreModule} from '@agm/core';

@NgModule({
  declarations: [
    AppComponent,
    LoginComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    AppRoutingModule,
    AgmCoreModule.forRoot({
      apiKey: 'KEY'
    })
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule {}
Run Code Online (Sandbox Code Playgroud)

我正在使用由 npm 安装的 AgmCoreModule:

npm install @agm/core --save
Run Code Online (Sandbox Code Playgroud)

我还尝试以这种方式导入 LatLang 类:

import LatLng = google.maps.LatLng;
Run Code Online (Sandbox Code Playgroud)

并在我的 index.html 中使用脚本

<script src="https://maps.googleapis.com/maps/api/js?key=KEY&libraries=places" async defer></script>
Run Code Online (Sandbox Code Playgroud)

但我一直都收到同样的问题。我错过了什么吗?

LLa*_*Lai 5

agm/core加载谷歌地图并在模块导入中设置您的 api 密钥,因此您不需要<script src="https://maps.googleapis.com/maps/api/js?key=KEY&libraries=places" async defer></script>

按照他们的入门教程进行操作。你最终会得到类似的东西

<agm-map [latitude]="lat" [longitude]="lng">
    <agm-marker [latitude]="lat" [longitude]="lng"></agm-marker>
</agm-map>
Run Code Online (Sandbox Code Playgroud)