Angular2 Google Map (ng-map version 2)
-
All google properties must be able to be defined in html without Javascript.
Thus, basic users don't even have to know what Javascript is.
-
Expose all original Google Maps V3 api to the user without any exception.
No hiding, nor manipulation. By doing so, programmers don't need to learnthis module. If you know Google Maps V3 API, there shouldn't be no problem using this module.
-
Install node_module
ng2-mapand typings$ npm install ng2-map @types/google-maps --save -
For SystemJs users only, update
system.config.jsto recognize ng2-map.map['ng2-map'] = 'node_modules/ng2-map/dist'; packages['ng2-map'] = { main: 'ng2-map.umd.js', defaultExtension: 'js' } -
import Ng2MapeModule to your AppModule
import { NgModule } from '@angular/core'; import { FormsModule } from "@angular/forms"; import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; import { Ng2MapModule} from 'ng2-map'; @NgModule({ imports: [BrowserModule, FormsModule, Ng2MapModule], declarations: [AppComponent], bootstrap: [ AppComponent ] }) export class AppModule { } -
Your Google maps may require API key, then override
apiUrlimport { Component } from '@angular/core'; import { Ng2MapComponent } from 'ng2-map'; @Component({ ... }) export class AppComponent { constructor() { Ng2MapComponent['apiUrl'] = 'https://maps.google.com/maps/api/js?key=XXXXXXXXXXXXXXXXXXXXXXXXXX'; } }
<ng2-map center="Brampton, Canada"></ng2-map>
or,
<ng2-map [options]="mapOptions"></ng2-map>
For full example, please check out app directory to see the example of;
main.ts- and
app.component.ts.
When map is ready Ng2MapComonent fires mapReady$ event with map object
<ng2-map zoom="13" center="37.775, -122.434" mapTypeId="satellite">
</ng2-map>In your app component,
import {Ng2MapComponent} from "ng2-map";
export class MyAppComponent {
@ViewChild(Ng2MapComponent) ng2MapComponent: Ng2MapComponent;
public map: google.maps.Map;
ngOnInit() {
this.ng2MapComponent.mapReady$.subscribe(map => {
this.map = map;
})
}
}When any map directive is initialized, each directive fires initialized$ event with its object. For HTML like the following,
<ng2-map zoom="13" center="37.775, -122.434" mapTypeId="satellite">
<marker position="37.775, -122.434"></marker>
</ng2-map>In your app component, use initialized$ event of a map object component, which is a ViewChild
import {Marker} from "ng2-map";
export class MyAppComponent {
@ViewChild(Marker) marker: Marker;
public marker: google.maps.Marker;
ngOnInit() {
this.Marker.initialized$.subscribe(marker => {
this.marker = marker;
})
}
}import {Ng2MapComponent} from "ng2-map";
export class MyAppComponent {
ngOnInit() {
this.ng2MapComponent.mapReady$.subscribe(map => {
console.log('all markers', map.markers);
})
}
}Every event has a google map event as a parameter. In addition, event also has a target, which is a google map object.
HTML Example
<ng2-map zoom="4" center="-25.363882, 131.044922" (click)="onClick($event)">
<marker *ngFor="let pos of positions" [position]="pos"></marker>
</ng2-map>
Javascript Example
onClick(event) {
if (event instanceof MouseEvent) return;
this.positions.push(event.latLng);
event.target.panTo(event.latLng);
}
This ng2-map module is only improved and maintained by volunteers like you;
As a volunteer, it's NOT required to be skilled in Javascript nor Angular2. It’s required to be open-minded and interested in helping others. You can contribute to the following;
- Updating README.md
- Making more and clearer comments
- Answering issues and building FAQ
- Documentation
- Translation
In result of your active contribution, you will be listed as a core contributor on https://ng2-ui.github.io, and a member of ng2-ui too.
If you are interested in becoming a contributor and/or a member of ng-ui,
please send me email to allenhwkim AT gmail.com with your github id.
- custom-marker
- properties: position
- event: all marker events.
$ git clone https://github.com/ng2-ui/ng2-map.git
$ cd ng2-map
$ npm install
$ npm start
npm run: List all available tasksnpm start: Runappdirectory for development usingwebpack-dev-serverwith port 9001npm run clean: Remove dist foldernpm run clean:dist: Clean up unnecessary dist folder within dist and app directorynpm run lint: Lint TypeScript codenpm run build:ngc: build ES modulenpm run build:umd: Build UMD moduleng2-map.umd.jsnpm run build:app: Buildapp/build/app.jsfor runnable examplesnpm run build: Build all(build:ngc, build:umc, build:app, and clean:dist)
