18.0.0 • Published 2 months ago
@duxor/agm-markerclusterer v18.0.0
Marker Clusterer for AGM
this package levereges the @google/markerclustererplus to add clustering support to AGM.
Installation
@duxor/agm-markerclusterer has a peer depedency on markerclustererplus
npm install @google/markerclustererplus @duxor/agm-markerclusterer --save
# or
yarn add @google/markerclustererplus @duxor/agm-markerclusterer
Usage
Add assets command to your angular.json In your
angular.json
file, go toprojects/<yourproject>/architect/build/options/assets
and add the following line:{"input": "./node_modules/@google/markerclustererplus/images", "glob": "*", "output": "/images"}
Import the module
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; // add these imports import { AgmCoreModule } from '@duxor/agm-core'; import { AgmMarkerClustererModule } from '@duxor/agm-markerclusterer'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, AgmCoreModule.forRoot({ apiKey: ['YOUR_API_KEY_HERE'] }), AgmMarkerClustererModule ], 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><!-- multiple markers --> </agm-marker-cluster> </agm-map>