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;
}
