@arin-pang-agm/drawing
TypeScript icon, indicating that this package has built-in type declarations

1.1.0-alternative • Public • Published

Map Drawing for AGM


this package adds drawing support to AGM.

Installation

npm install @arin-pang-agm/drawing
# or
yarn add @arin-pang-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 '@arin-pang-agm/core';
import { AgmDrawingModule } from '@arin-pang-agm/drawing
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AgmCoreModule.forRoot({
      apiKey: ['YOUR_API_KEY_HERE']
    }),
    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>

Package Sidebar

Install

npm i @arin-pang-agm/drawing

Weekly Downloads

13

Version

1.1.0-alternative

License

MIT

Unpacked Size

209 kB

Total Files

30

Last publish

Collaborators

  • arin-pang