@grupo-san-cristobal/agm-drawing
TypeScript icon, indicating that this package has built-in type declarations

19.0.2 • Public • Published

This is a fork from the original Angular google maps project from sebastian holstein,

We have published the package under our organization since we needed support for most current Angular versions.

We will be maintaining this package in order to provide compatibility with newer Angular versions

We are not planning on adding new features to this package, and we plan to get back to the original angular google maps as soon the maintenance is reestablished on the original package

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>

/@grupo-san-cristobal/agm-drawing/

    Package Sidebar

    Install

    npm i @grupo-san-cristobal/agm-drawing

    Weekly Downloads

    160

    Version

    19.0.2

    License

    MIT

    Unpacked Size

    33.4 kB

    Total Files

    10

    Last publish

    Collaborators

    • aotaduy
    • sol.lopez
    • lucasjaviluna
    • juanjo_gazzola