Angular Google Maps (AGM) extension for markerclusterer support
npm install @agm/markerclusterer-----
this package levereges the [markerclustererplus][markerclustererplus] to add clustering support to
[AGM][agm].
@agm/js-marker-clusterer has a peer depedency on [markerclustererplus][markerclustererplus]
``shell`
npm install @google/markerclustererplus @agm/js-marker-clusterer --saveor
yarn add @google/markerclustererplus @agm/js-marker-clusterer
file, go to projects/ and add the following line:
`json
{"input": "./node_modules/@google/markerclustererplus/images", "glob": "*", "output": "/images"}
`2. Import the module
`typescript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component'; // add these imports
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 { }
`
3. use it in your template
`html
``
[markerclustererplus]: https://github.com/googlemaps/v3-utility-library/tree/master/markerclustererplus
[agm]: https://angular-maps.com/