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
{{ message }}
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
Thanks for putting this together -- much appreciated. Am going through the graph tutorial at the moment and have a blank screen with no visible errors in the console.
Also am trying to keep up to date with the newest releases of deck.gl and after updating my npm package to "deck.gl": "^6.0.3", it seems that OrthographicViewport can now be substituted with OrthographicView, which DeckGL can include with propview as opposed to viewport.
I'm not getting anything showing up on the screen with these changes in place. I do see something, however, when I comment out getSourcePosition() in createEdgeLayer():
Curious as to what's going on -- no nodes are visible? Would appreciate assistance.
The text was updated successfully, but these errors were encountered:
Hey all,
Thanks for putting this together -- much appreciated. Am going through the
graph
tutorial at the moment and have a blank screen with no visible errors in the console.Also am trying to keep up to date with the newest releases of deck.gl and after updating my npm package to
"deck.gl": "^6.0.3",
it seems that OrthographicViewport can now be substituted with OrthographicView, which DeckGL can include with propview
as opposed toviewport
.New viewport in
createViewport()
:return new OrthographicView({ width, height, left: (-width / 2), top: (-height / 2) });
I'm not getting anything showing up on the screen with these changes in place. I do see something, however, when I comment out
getSourcePosition()
increateEdgeLayer()
:Curious as to what's going on -- no nodes are visible? Would appreciate assistance.
The text was updated successfully, but these errors were encountered: