Home

Awesome

map

Build Status Join the chat at https://gitter.im/ng2-ui/map

Angular2 Google Map (ng-map version 2)

If you like this, you may also like these;

Design Principle

  1. 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.

  2. Expose all original Google Maps V3 api to the user without any exception.

    No hiding or manipulation. By doing so, programmers don't need to learn anything about this convenient module. If you know Google Maps V3 API, there shouldn't be a problem using this module.

Usage

  1. Install node_module @ngui/map and typings

     $ npm install @ngui/map @types/googlemaps --save
    
  2. For SystemJs users only, update system.config.js to recognize @ngui/map.

     map['@ngui/map'] = 'node_modules/@ngui/map/dist/map.umd.js';
    
  3. import NguiMapModule 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 { NguiMapModule} from '@ngui/map';
    
     @NgModule({
       imports: [
         BrowserModule, 
         FormsModule, 
         NguiMapModule.forRoot({apiUrl: 'https://maps.google.com/maps/api/js?key=MY_GOOGLE_API_KEY'})
       ],
       declarations: [AppComponent],
       bootstrap: [ AppComponent ]
     })
     export class AppModule { }
    

Use it in your template

<ngui-map center="Brampton, Canada"></ngui-map>

or,

<ngui-map [options]="mapOptions"></ngui-map>

For a full example, please check out the app directory to see the example:

How to get a instance(s) of a map or markers

<ngui-map 
  zoom="13" 
  center="37.775, -122.434" 
  (mapReady$)="onMapReady($event)"
  (mapClick)="onMapClick($event)"
  (idle)="onIdle($event)"
  mapTypeId="satellite">
    <marker *ngFor="let pos of positions" 
      [position]="pos"
      (initialized$)="onMarkerInit($event)"></marker>
</ngui-map>

In your app component:

export class MyAppComponent {
  onMapReady(map) {
    console.log('map', map);
    console.log('markers', map.markers);  // to get all markers as an array 
  }
  onIdle(event) {
    console.log('map', event.target);
  }
  onMarkerInit(marker) {
    console.log('marker', marker);
  }
  onMapClick(event) {
    this.positions.push(event.latLng);
    event.target.panTo(event.latLng);
  }
}

Need Contributors

This ngui-map module is only improved and maintained by volunteers like you;

As a volunteer, it's NOT required to be skilled in Javascript or Angular2. It’s required to be open-minded and interested in helping others. You can contribute to the following;

As a 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.

Google Maps V3 Compatibility Table

<table> <tr><th> Object <th> Options <th> Events <th> Note </tr> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Map">Map</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#MapOptions">MapOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Map">Map Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/map-simple">Google Simple Map Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/simple-map">ngui-map example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Marker">Marker</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#MarkerOptions">MarkerOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Marker">Marker Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/marker-simple">Google Simple Marker Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/simple-marker">ngui-map marker example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#InfoWindow">InfoWindow</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#InfoWindowOptions">InfoWindowOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#InfoWindow">InfoWindow Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/infowindow-simple">Google Infowindows Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/simple-info-window">ngui-map info-window example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Circle">Circle</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#CircleOptions">CircleOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Circle">Circle Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/circle-simple">Google Circle example</a> <br/> <a href="https://ng2-ui.github.io/map/#/simple-circle">ngui-map circle example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Polygon">Polygon</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#PolygonOptions">PolygonOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Polygon">Polygon Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/polygon-hole">Google Polygon example</a> <br/> <a href="https://ng2-ui.github.io/map/#/polygon">ngui-map polygon example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Polyline">Polyline</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#PolylineOptions">PolylineOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Polyline">Polyline Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/polyline-simple">Google Polyline Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/simple-polyline">ngui-map polyline example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#GroundOverlay">GroundOverlay</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#GroundOverlayOptions">GroundOverlayOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#GroundOverlay">GroundOverlay Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/groundoverlay-simple">Google Simple Ground Overlay Example</a><br/> <a href="https://ng2-ui.github.io/map/#/simple-ground-overlay">ngui-map ground-overlay example</a> <tr><td> FusionTablesLayer <td> FusionTablesLayerOptions <td> FusionTablesLayer Events <td> Experimental Status - No Plan to implement <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#HeatmapLayer">HeatmapLayer</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#HeatmapLayerOptions">HeatmapLayerOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#HeatmapLayer">HeatmapLayer Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/layer-heatmap">Google Heatmap Layer</a> <br/> <a href="https://ng2-ui.github.io/map/#/heatmap-layer">ngui-map heatmap-layer example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#KmlLayer">KmlLayer</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#KmlLayerOptions">KmlLayerOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#KmlLayer">KmlLayer Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/layer-kml">Google Kml Layer</a> <br/> <a href="https://ng2-ui.github.io/map/#/heatmap-layer">ngui-map kml-layer example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Data">Data</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#DataOptions">DataOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#Data">Data Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/layer-data-simple">Google Layer Data Example</a> <br/> <xa href="https://ng2-ui.github.io/map/#/data-layer">ngui-map data example</xa> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#BicyclingLayer">BicyclingLayer</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#BicyclingLayerOptions">BicyclingLayerOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#BicyclingLayer">BicyclingLayer Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/layer-bicycling">Google Bycycling Layer Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/bicycling-layer">ngui-map bicycling-layer example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#TrafficLayer">TrafficLayer</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#TrafficLayerOptions">TrafficLayerOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#TrafficLayer">TrafficLayer Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/layer-traffic">Google Traffic Layer Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/traffic-layer">ngui-map traffic-layer example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#TransitLayer">TransitLayer</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#TransitLayerOptions">TransitLayerOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#TransitLayer">TransitLayer Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/layer-transit">Google Transit Layer Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/transit-layer">ngui-map transit-layer example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#StreetViewPanorama">StreetViewPanorama</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#StreetViewPanoramaOptions">StreetViewPanoramaOptions</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#StreetViewPanorama">StreetViewPanorama Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/streetview-embed">Google Streetview Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/street-view-panorama">ngui-map streetview-panorama example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#AutoComplete">AutoComplete</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#AutoCompleteOptions">AutoComplete Options</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#AutoComplete">AutoComplete Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete">Google Places Autocomplete Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/palces-auto-complete">ngui-map places-auto-complete example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#DirectionsRenderer">DirectionsRenderer</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#DirectionsRendererOptions">DirectionsRenderer Options</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#DirectionsRenderer">DirectionsRenderer Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/directions-complex">Google Directions Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/directions-renderer">ngui-map directions-renderer example</a> <tr><td> <a href="https://developers.google.com/maps/documentation/javascript/reference#DrawingManager">DrawingManager</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#DrawingManagerOptions">DrawingManager Options</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/reference#DrawingManager">DrawingManager Events</a> <td> <a href="https://developers.google.com/maps/documentation/javascript/examples/drawing-tools">Google Drawing Manager Example</a> <br/> <a href="https://ng2-ui.github.io/map/#/drawing-manager">ngui-map drawing-manager example</a> </table>

Custom Directives

For Developers

To start

$ git clone https://github.com/ng2-ui/map.git
$ cd map
$ npm install
$ npm start

Before you make a PR

If you are planning to make a lot of code changes in the PR, we encourage to create an issue first:

  1. To avoid duplicate work
  2. To encourage discussion of solutions

We do not want to reject a PR because of you've chosen a wrong approach or direction after a lot of effort has been made.

List of available npm tasks