作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想在我的 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/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!