/**
 * Defines an interface for geographical coordinates
 */
export interface IGeoPoint {
    /**
     * Longitude
     */
    longitude: number;
    /**
     * Latitude
     */
    latitude: number;
}
