angular-leaflet
Version:
Collection of angular components to build map views faster and with minimal configuration using the most popular library **LeafletJS**.
11 lines (10 loc) • 382 B
TypeScript
import { LatLngExpression, LayerGroup, Map, PathOptions, Polyline } from 'leaflet';
import { BaseLayer } from '../../core/base-layer';
export declare class PolylineComponent extends BaseLayer<Polyline> {
coordinates: LatLngExpression[];
options: PathOptions;
private _coordinates;
private _options;
addTo(map: Map | LayerGroup): void;
private createLayer;
}