UNPKG

@amcharts/amcharts4

Version:
22 lines (21 loc) 321 B
/** * Defines an interface for geographical coordinates */ export interface IGeoRectangle { /** * Latitude */ north: number; /** * Latitude */ south: number; /** * Longitude */ west: number; /** * Longitude */ east: number; }