// Spot markers handled inline in MapView with Leaflet divIcon
export interface SpotPin {
  id: string
  name: string
  lat: number
  lng: number
  difficulty: 'BEGINNER' | 'INTERMEDIATE' | 'ADVANCED'
}
