4.0.0-beta.25 • Published 11 months ago

@babluroy/agm-drawing v4.0.0-beta.25

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Map Drawing for AGM


this package adds drawing support to AGM.

Installation

npm install @agm/drawing
# or
yarn add @agm/drawing

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 { AgmDrawingModule } from '@agm/drawing'
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AgmCoreModule.forRoot({
      apiKey: ['YOUR_API_KEY_HERE'],
      libraries: ['drawing']
    }),
    AgmDrawingModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
  1. use it in your template
<agm-map style="height: 300px" [latitude]="51.673858" [longitude]="7.815982" [agmDrawingManager]="drawing">
</agm-map>
<agm-drawing-manager #drawing="agmDrawingManager" [drawingMode]="'circle'" [circleOptions]="{fillColor:'red', radius: 150}"></agm-drawing-manager>
4.0.0-beta.25

11 months ago

4.0.0-beta.24

11 months ago

4.0.0-beta.23

11 months ago

4.0.0-beta.22

11 months ago

4.0.0-beta.21

11 months ago

4.0.0-beta.20

11 months ago

4.0.0-beta.19

11 months ago

4.0.0-beta.18

11 months ago

4.0.0-beta.17

11 months ago

4.0.0-beta.16

11 months ago

4.0.0-beta.15

11 months ago

4.0.0-beta.14

11 months ago

4.0.0-beta.13

11 months ago

4.0.0-beta.12

11 months ago

4.0.0-beta.11

11 months ago

4.0.0-beta.10

11 months ago

4.0.0-beta.9

11 months ago

4.0.0-beta.8

11 months ago