export interface IMarker { position: WayPoint; meta?: Map; label?: string; active: boolean; } export interface WayPoint { lat: number; lng: number; }