当前位置:  开发笔记 > 编程语言 > 正文

angular2-google-maps with angular2 app

如何解决《angular2-google-mapswithangular2app》经验,为你挑选了1个好方法。

我已经设置了angular2-google-mapangular2应用程序.

这是app.module.ts

import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent }  from './app.component';
import { AgmCoreModule} from 'angular2-google-maps/core';
@NgModule({
  imports:      [ BrowserModule, AgmCoreModule.forRoot({apiKey: 'AIzaSyAe3ci9yavJcWt7MaJE8DusAuZo-QeRqkU'}) ],
  declarations: [ AppComponent ],
  bootstrap:    [ AppComponent ],
})
export class AppModule { }

我用命令安装了angular2-google-maps,

npm install angular2-google-maps --save

哪个成功安装.当我用npm start运行应用程序时,它显示错误说,

http:// localhost:3000/angular2-google-maps/core无法加载资源:服务器响应状态为404(未找到)

但我可以在node_modules中看到angular2-google-maps文件夹.问题是什么?



1> Pankaj Parka..:

你忘了加入mapsystem.config.js

'angular2-google-maps/core': 'npm:angular2-google-maps/core/core.umd.js'

通过将以上内容添加到systemjs配置中.core.umd.js尝试导入时,模块加载器将理解加载angular2-google-maps/core.

推荐阅读
郑小蒜9299_941611_G
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有