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) • 378 B
TypeScript
import { QueryList } from '@angular/core';
import { BaseLayer } from '../../core/base-layer';
import { FeatureGroup, LayerGroup, Map } from 'leaflet';
export declare class FeatureGroupComponent extends BaseLayer<FeatureGroup> {
layers: QueryList<BaseLayer<any>>;
layerIds: string[];
addTo(map: Map | LayerGroup): void;
private addLayers;
private addLayer;
}