UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

35 lines (34 loc) 756 B
export declare const LOCALES: { en: string; fi: string; pt: string; es: string; ca: string; ja: string; cn: string; ru: string; }; /** * Localization can be passed to `KeplerGl` via uiState `locale`. * Available languages are `en` and `fi`. Default language is `en` * @constant * @public * @example * ```js * import {combineReducers} from 'redux'; * import {LOCALE_CODES} from 'kepler.gl/localization'; * * const customizedKeplerGlReducer = keplerGlReducer * .initialState({ * uiState: { * // use Finnish locale * locale: LOCALE_CODES.fi * } * }); * * ``` */ export declare type LocaleCodesType = { [key: string]: string; }; export declare const LOCALE_CODES: LocaleCodesType;