-
Notifications
You must be signed in to change notification settings - Fork 817
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds a new NgModule to the project. The Module name for the core package is `AgmCoreModule`. This feature is experimental. Example: ```typescript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { MyMapsProjectAppComponent } from './app/'; import {AgmCoreModule} from 'angular2-google-maps/core'; @NgModule({ imports: [BrowserModule, AgmCoreModule.forRoot()], declarations: [MyMapsProjectAppComponent], bootstrap: [MyMapsProjectAppComponent] }) export class AppModule { } platformBrowserDynamic().bootstrapModule(AppModule); ``` Closes #560 Closes #571
- Loading branch information
1 parent
b8f4680
commit 1d0cd9c
Showing
3 changed files
with
20 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters