export interface PoiCollection { type: string; features: Poi[]; } export interface Poi { type: string; properties: Properties; geometry: Geometry; } export interface Geometry { type: string; coordinates: number[]; } export interface Properties { type: string; id?: string; code?: string; city?: string; name?: string; visible?: boolean; LaMetro?: boolean; LeGresivaudan?: boolean; PaysVoironnais?: boolean; [key: string]: any; }