gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 17:56:48 25 4
gpt4 key购买 nike

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

加载 View 时,我在 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)..

我的组件:

  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() {}
}

应用程序模块.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 {}

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

npm install @agm/core --save

我也试过用这种方式导入 LatLang 类:

import LatLng = google.maps.LatLng;

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

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

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

最佳答案

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

按照他们的入门指南tutorial .你最终会得到类似的东西

<agm-map [latitude]="lat" [longitude]="lng">
<agm-marker [latitude]="lat" [longitude]="lng"></agm-marker>
</agm-map>

关于Angular 5 - 未定义谷歌(谷歌地图),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47562107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com