export interface TierCollection { type: string; features: TierFeature[]; } export interface TierFeature { type: string; properties: TierProperties; geometry: TierGeometry; } export interface TierGeometry { type: string; coordinates: number[]; } export interface TierProperties { type: string; code: string; batteryLevel: number; maxSpeed: number; deepLink: string; } export interface TierZoneCollection { type: string; features: TierZoneFeature[]; } export interface TierZoneFeature { type: string; properties: TierZoneProperties; geometry: TierZoneGeometry; } export interface TierZoneGeometry { type: string; coordinates: number[][][]; } export interface TierZoneProperties { Name: string; type: string; id: number; }