(params)
| 33 | |
| 34 | class TestScatterplotLayer extends ScatterplotLayer { |
| 35 | draw(params) { |
| 36 | super.draw(params); |
| 37 | this.props.onAfterRedraw({ |
| 38 | viewport: this.context.viewport, |
| 39 | layer: this |
| 40 | }); |
| 41 | } |
| 42 | } |
| 43 | TestScatterplotLayer.layerName = 'TestScatterplotLayer'; |
| 44 |