angular-leaflet
Version:
Collection of angular components to build map views faster and with minimal configuration using the most popular library **LeafletJS**.
13 lines (12 loc) • 405 B
TypeScript
import { BaseLayer } from '../../core/base-layer';
import { Circle, LatLngExpression, LayerGroup, Map, PathOptions } from 'leaflet';
export declare class CircleComponent extends BaseLayer<Circle> {
center: LatLngExpression;
radius: number;
options: PathOptions;
private _center;
private _radius;
private _options;
addTo(map: Map | LayerGroup): void;
private createLayer;
}