nebula.gl icon indicating copy to clipboard operation
nebula.gl copied to clipboard

bug with function EditableGeoJsonLayer.getCursor()

Open linze99 opened this issue 3 years ago • 0 comments

after deck.gl update to 8.8.0+,my propram raise a exception like this: 1 it happend in the function EditableGeoJsonLayer.getCursor(), 2 at the mean time this.state is undefined but not null;

after changed the code with:

  if (this.state === null || this.state === undefined) {
    // Layer in 'Awaiting state'
    return null;
  }

it works fine

linze99 avatar Jul 23 '22 12:07 linze99