angular-leaflet
Version:
Collection of angular components to build map views faster and with minimal configuration using the most popular library **LeafletJS**.
10 lines (9 loc) • 336 B
TypeScript
import { LatLngExpression, LayerGroup, Map, Marker } from 'leaflet';
import { BaseLayer } from '../core/base-layer';
export declare class MarkerComponent extends BaseLayer<Marker> {
latLng: LatLngExpression;
_latLng: LatLngExpression;
private prepareLayer;
private createLayer;
addTo(map: Map | LayerGroup): void;
}