Using Updaters
Updaters are state transition functions that mapped to actions. One action can map to multiple state updaters, each belongs to a subreducer.
This action-updater pattern allows a user to import a specific action updater in the app's root reducer and use it to directly modify kepler.gl’s state without dispatching the action. This will give user a lot of freedom to control over kepler.gl's state transition.
To achieve the same result with togglePerspective
updating kepler.gl's map perspective mode. You can import and dispatch kepler.gl action togglePerspective
:
or import the corresponding updater mapStateUpdaters.togglePerspectiveUpdater
and call it inside the root reducer. The example below demos how to add a button outside kepler.gl component, and update the map perspective when click it.
Last updated