UNPKG

@amcharts/amcharts4

Version:
14 lines (13 loc) 215 B
/** * Defines an interface for geographical coordinates */ export interface IGeoPoint { /** * Longitude */ longitude: number; /** * Latitude */ latitude: number; }