agm-2mundos-js-marker-clusterer
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-beta.3-2m.0.2 • Public • Published

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

  1. 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 '@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 { }
  2. 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>

Package Sidebar

Install

npm i agm-2mundos-js-marker-clusterer

Weekly Downloads

1

Version

1.0.0-beta.3-2m.0.2

License

MIT

Unpacked Size

69 kB

Total Files

48

Last publish

Collaborators

  • tpeixoto2m