UNPKG

@asymmetrik/ngx-leaflet-draw

Version:

Angular.io component for the draw plugin for Leaflet

20 lines (16 loc) 414 B
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; import { LeafletDrawDemoModule } from './leaflet-draw/leaflet-draw-demo.module'; @NgModule({ imports: [ BrowserModule, LeafletDrawDemoModule ], declarations: [ AppComponent ], bootstrap: [ AppComponent ], providers: [ ] }) export class AppModule { }