/** * Grid Constants */ export declare class GridConstants { /** * Minimum longitude */ static readonly MIN_LON = -180; /** * Maximum longitude */ static readonly MAX_LON = 180; /** * Minimum latitude */ static readonly MIN_LAT = -90; /** * Maximum latitude */ static readonly MAX_LAT = 90; /** * Omitted band letter 'I' */ static readonly BAND_LETTER_OMIT_I = "I"; /** * Omitted band letter 'O' */ static readonly BAND_LETTER_OMIT_O = "O"; /** * Max map zoom level */ static readonly MAX_MAP_ZOOM_LEVEL = 21; /** * North single character as a string */ static readonly NORTH_CHAR = "N"; /** * South single character as a string */ static readonly SOUTH_CHAR = "S"; /** * West single character as a string */ static readonly WEST_CHAR = "W"; /** * East single character as a string */ static readonly EAST_CHAR = "E"; } //# sourceMappingURL=GridConstants.d.ts.map