Navigation Menu

Skip to content

Commit

Permalink
Step 12.3: Import google maps module
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and darkbasic committed Oct 16, 2017
1 parent e1fc472 commit 3a13fb1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/app.module.ts
Expand Up @@ -3,6 +3,7 @@ import { ErrorHandler, NgModule } from '@angular/core';
import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';
import { SplashScreen } from '@ionic-native/splash-screen';
import { StatusBar } from '@ionic-native/status-bar';
import { AgmCoreModule } from '@agm/core';
import { MomentModule } from 'angular2-moment';
import { ChatsPage } from '../pages/chats/chats';
import { NewChatComponent } from '../pages/chats/new-chat';
Expand Down Expand Up @@ -30,7 +31,10 @@ import { MyApp } from './app.component';
imports: [
BrowserModule,
IonicModule.forRoot(MyApp),
MomentModule
MomentModule,
AgmCoreModule.forRoot({
apiKey: 'AIzaSyAWoBdZHCNh5R-hB5S5ZZ2oeoYyfdDgniA'
})
],
bootstrap: [IonicApp],
entryComponents: [
Expand Down

0 comments on commit 3a13fb1

Please sign in to comment.