Skip to content

Commit

Permalink
Step 11.3: Import google maps module
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 13, 2017
1 parent 75d88c9 commit 38c1db7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/app.module.ts
@@ -1,4 +1,5 @@
import { NgModule, ErrorHandler } from '@angular/core';
import { AgmCoreModule } from 'angular2-google-maps/core';
import { MomentModule } from 'angular2-moment';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
import { ChatsPage } from '../pages/chats/chats';
Expand Down Expand Up @@ -26,7 +27,10 @@ import { MyApp } from './app.component';
],
imports: [
IonicModule.forRoot(MyApp),
MomentModule
MomentModule,
AgmCoreModule.forRoot({
apiKey: 'AIzaSyAWoBdZHCNh5R-hB5S5ZZ2oeoYyfdDgniA'
})
],
bootstrap: [IonicApp],
entryComponents: [
Expand Down

0 comments on commit 38c1db7

Please sign in to comment.