You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I need to display a polygon layer but it doesn't show on my app, the layer is created. The issue isn't the data because it came directly from kepler.gl demo site (export -> Export Map -> JSON) and when I tried it on the same demo-app, everything works fine! So the issue must come from my app but I can't figure it out (I'm pretty new with react) !
import keplerGlReducer from '@kepler.gl/reducers';
import {legacy_createStore, combineReducers, applyMiddleware} from 'redux';
import {taskMiddleware} from 'react-palm/tasks';
import appReducer from './app-reducer';
const reducer = combineReducers({
// <-- mount kepler.gl reducer in your app
keplerGl: keplerGlReducer,
// Your other reducers here
app: appReducer
});
// create store
export default legacy_createStore(reducer, {}, applyMiddleware(taskMiddleware));
Describe the bug
I need to display a polygon layer but it doesn't show on my app, the layer is created. The issue isn't the data because it came directly from kepler.gl demo site (export -> Export Map -> JSON) and when I tried it on the same demo-app, everything works fine! So the issue must come from my app but I can't figure it out (I'm pretty new with react) !
Here's my app:
Here's kerpler demo with the same data:
Here's my code:
And here's how I call it in my app.js,
Here's my store.js:
appReducer:
And here's my package.json:
Edit :
I also remarked that i don't have the same layers option in my app than in the demo-app :
Desktop (please complete the following information):
I opened the same ticket on stack overflow : https://stackoverflow.com/questions/78922858/kepler-gl-polygon-layer-not-showing
If you need any more informations or have any questions, please let me know !
Thanks
The text was updated successfully, but these errors were encountered: