UNPKG

angular-leaflet

Version:

Collection of angular components to build map views faster and with minimal configuration using the most popular library **LeafletJS**.

14 lines (13 loc) 392 B
import { ImageOverlay, LayerGroup, Map } from 'leaflet'; import { BaseLayer } from '../core/base-layer'; export declare class ImageOverlayComponent extends BaseLayer<ImageOverlay> { src: string; width: number; height: number; private _url; private _width; private _height; addTo(map: Map | LayerGroup): void; prepareLayer(): void; private prepareBounds; }