Marker Clusterer for AGM
this package levereges the js-marker-clusterer to add clustering support to
AGM.
Installation
@agm/js-marker-clusterer has a peer depedency on js-marker-clusterer
npm install js-marker-clusterer @agm/js-marker-clusterer --save
# or
yarn add js-marker-clusterer @agm/js-marker-clusterer
Usage
-
Import the module
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { AgmCoreModule } from '@agm/core';
import { AgmJsMarkerClustererModule } from '@agm/js-marker-clusterer';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AgmCoreModule.forRoot({
apiKey: ['YOUR_API_KEY_HERE']
}),
AgmJsMarkerClustererModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
-
use it in your template
<agm-map style="height: 300px" [latitude]="51.673858" [longitude]="7.815982">
<agm-marker-cluster imagePath="https://raw.githubusercontent.com/googlemaps/v3-utility-library/master/markerclustererplus/images/m">
<agm-marker [latitude]="51.673858" [longitude]="7.815982">
</agm-marker>
</agm-marker-cluster>
</agm-map>
1.0.0-beta.3 orange-disk (2018-05-24)
Bug Fixes
- AgmMap: memory leak when map gets destroyed (6006617)
- AgmPolygon: createPolygon type fix (2563cae)
- Lazy Loading: check if google maps script was already loaded (e513c57), closes #692
- LazyMapsAPILoader: multiple google maps api scripts on page (07de5a4), closes #315 #775 #1260
Features
- all packages: Support angular 6 (44fba48)
- AgmMap: EventEmitter for maptypeid_changed event (f9c23aa)
- AgmMarker: add animation field to markers (c57ab39), closes #580 #852
- AgmMarker: allow objects as label (658de77)
Performance Improvements
- AgmMap: run resolve outside angular zone (078c2a5)
BREAKING CHANGES
Angular 4.x is not officially supported anymore. Please update to Angular 5.x or 6.x.
<a name="1.0.0-beta.2"></a>