(speed: number = 10)
| 410 | } |
| 411 | |
| 412 | rotateUp(speed: number = 10): MapState { |
| 413 | return this._getUpdatedState({ |
| 414 | pitch: this.getViewportProps().pitch + speed |
| 415 | }); |
| 416 | } |
| 417 | |
| 418 | rotateDown(speed: number = 10): MapState { |
| 419 | return this._getUpdatedState({ |
nothing calls this directly
no test coverage detected