Replies: 6 comments 3 replies
-
|
same... I've just copied the reverse example from here edit: i've also downgraded to 9.0.0 - error is still there |
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue after moving from 9.1.9 to 9.2.2
|
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue. I can't go back to previous version since I have used widgets from the new version. Is there a solution available? |
Beta Was this translation helpful? Give feedback.
-
|
I had this issue also in my React app. What fixed it for me was removing the React.StrictMode tags in my app.jsx page. Hopefully that helps the maintainers debug this. |
Beta Was this translation helpful? Give feedback.
-
|
Ran into this same issue:
My app's using:
Disabling Is there an issue tracking this? |
Beta Was this translation helpful? Give feedback.
-
|
We ran into the same issue as well: import React from "react"
import { DeckGL } from "@deck.gl/react"
import { Map } from "react-map-gl/maplibre"
import { MapViewState } from "@deck.gl/core"
const INITIAL_VIEW_STATE: MapViewState = {
longitude: -122.41669,
latitude: 37.7853,
zoom: 13,
}
export default function DeckGLMap() {
return (
<DeckGL
id="deck-gl"
initialViewState={INITIAL_VIEW_STATE}
controller={{ doubleClickZoom: false }}
>
<Map
mapStyle={
"https://roblabs.com/xyz-raster-sources/styles/arcgis-world-imagery.json"
}
attributionControl={false}
></Map>
</DeckGL>
)
}same issue with a simpler example as well import React from "react"
import { DeckGL } from "@deck.gl/react"
import { TextLayer } from "@deck.gl/layers"
export default function DeckGLMap() {
const layers = [
new TextLayer({
id: "text-layer",
data: [
{
text: "Hello, world!",
x: 0,
y: 0,
},
],
}),
]
return <DeckGL layers={layers} />
}
We are using NextJs 15, disabling I will also note I tested the same code in TanstackStart React and got the error there too I do not get the error with the html ibgreen posted, so it might be a React specific issue? |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
I was using deck.gl in my react application and I have upgraded to 9.2.2. After upgrading, this error is shown.
Error after upgrading can't access property "maxTextureDimension2D", this.device.limits is undefined
Not sure how can i solve it.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions