[Vuejs]-Stopping deck.gl's viewstate transition with transitionInterruption

0👍

Turns out another function was manipulating deck.gl’s layer state. Updating the viewState at the same time fixed this.

this.deck.setProps({
  layers: [...this.deckLayers],
  viewState: this.deck.viewState
});

Leave a comment