UNPKG

ng-leaflet-universal-cm

Version:

NgLeafletUniversal is an open source Angular module that extends and simplifies the Leaflet implementation for Angular.

14 lines (13 loc) 287 B
import { MarkerCard } from './marker-card.interface'; export interface Marker { id: string; location: Location; icon?: string; card?: MarkerCard; html?: string; cardActivated?: boolean; } export interface Location { latitude: number; longitude: number; }