reducers
Table of Contents
keplerGlReducer
import keplerGlReducer from '@kepler.gl/reducers';
import {createStore, combineReducers, applyMiddleware, compose} from 'redux';
import {taskMiddleware} from 'react-palm/tasks';
const initialState = {};
const reducers = combineReducers({
// <-- mount kepler.gl reducer in your app
keplerGl: keplerGlReducer,
// Your other reducers here
app: appReducer
});
// using createStore
export default createStore(reducers, initialState, applyMiddleware(taskMiddleware));keplerGlReducer.initialState
keplerGlReducer.plugin
mapStateLens
mapStyleLens
providerStateLens
uiStateLens
visStateLens
Last updated
Was this helpful?