@a7gm/js-marker-clusterer 中文文档教程

发布于 6年前 浏览 25 项目主页 更新于 3年前

Marker Clusterer for AGM


这个包利用 js-marker-clusterer 添加集群支持 年度股东大会

Installation

@a7gm/js-marker-clusterer 在 js-marker-clusterer 上有一个对等依赖

npm install js-marker-clusterer @a7gm/js-marker-clusterer --save
# or
yarn add js-marker-clusterer @a7gm/js-marker-clusterer

Usage

  1. 导入模块

    import { BrowserModule } from '@angular/platform-browser';
    import { NgModule } from '@angular/core';
    import { AppComponent } from './app.component';
    
    // add these imports
    import { AgmCoreModule } from '@a7gm/core';
    import { AgmJsMarkerClustererModule } from '@a7gm/js-marker-clusterer';
    
    @NgModule({
      declarations: [
        AppComponent
      ],
      imports: [
        BrowserModule,
        AgmCoreModule.forRoot({
          apiKey: ['YOUR_API_KEY_HERE']
        }),
        AgmJsMarkerClustererModule
      ],
      providers: [],
      bootstrap: [AppComponent]
    })
    export class AppModule { }
    
  2. 使用它你的模板

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

Marker Clusterer for AGM


this package levereges the js-marker-clusterer to add clustering support to AGM.

Installation

@a7gm/js-marker-clusterer has a peer depedency on js-marker-clusterer

npm install js-marker-clusterer @a7gm/js-marker-clusterer --save
# or
yarn add js-marker-clusterer @a7gm/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 '@a7gm/core';
    import { AgmJsMarkerClustererModule } from '@a7gm/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>
    
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文