/**
 * Defines an interface for geographical coordinates
 */
export interface IGeoRectangle {
    /**
     * Latitude
     */
    north: number;
    /**
     * Latitude
     */
    south: number;
    /**
     * Longitude
     */
    west: number;
    /**
     * Longitude
     */
    east: number;
}
