agm-map不是已知的元素角4

时间:2018-01-27 11:20:18

标签: angular google-maps-api-3

我试图在我的Angular项目中使用Angular Google Maps (AGM),但是出现了这个错误 agm-map不是已知的元素

我的app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AgmCoreModule } from '@agm/core';

import { AppComponent } from './app.component';
import { NavBarComponent } from './nav-bar/nav-bar.component';

@NgModule({
  declarations: [
    AppComponent,
    NavBarComponent
  ],
  imports: [
    BrowserModule,
    AgmCoreModule.forRoot({
      apiKey: 'AIzaSyDpV2SN0k5BqyVTQjTX8wU - hdCgBgktKY0'
    })
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

我的app.component.ts

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'app';
  lat = 51.678418;
  lng = 7.809007;
}

我的app.component.html

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

enter image description here

2 个答案:

答案 0 :(得分:0)

尝试在自己的模块中导入AgmModule。

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

 @NgModule({
 imports:[
      AgmCoreModule.forRoot({
       apiKey: 'YOUR API KEY'
     }) 
    ]
 })

 export class MyModule { }

更多详细信息,请访问:https://github.com/SebastianM/angular-google-maps/issues/1563

答案 1 :(得分:-1)

它给出了这个错误,因为它无法找到存储agm map的agm / core,并且我看到你已经有了一个import语句,所以你应该只使用

  

npm install @ agm / core --save

如需更好的解释,请访问https://angular-maps.com/guides/getting-started/