UNPKG

@asymmetrik/ngx-leaflet-draw

Version:

Angular.io component for the draw plugin for Leaflet

19 lines (14 loc) 309 B
import { Component } from '@angular/core'; @Component({ selector: 'leafletDrawDemo', templateUrl: './leaflet-draw-demo.component.html' }) export class LeafletDrawDemoComponent { showDemo = false; ngOnInit() { // Primarily for debugging setTimeout(() => { this.showDemo = true; }, 1000); } }