* End zooming * Must call if `zoomStart()` was called
()
| 367 | * Must call if `zoomStart()` was called |
| 368 | */ |
| 369 | zoomEnd(): MapState { |
| 370 | return this._getUpdatedState({ |
| 371 | startZoomLngLat: null, |
| 372 | startZoom: null |
| 373 | }); |
| 374 | } |
| 375 | |
| 376 | zoomIn(speed: number = 2): MapState { |
| 377 | return this._zoomFromCenter(speed); |
nothing calls this directly
no test coverage detected