(delta)
| 807 | |
| 808 | // convenience methods for zooming in and out |
| 809 | _zoomIn(delta) { return this.setMapParams(undefined, ~~this.zoom() + delta, undefined, 250); } |
| 810 | _zoomOut(delta) { return this.setMapParams(undefined, ~~this.zoom() - delta, undefined, 250); } |
| 811 | |
| 812 | zoomIn() { return this._zoomIn(1); } |
no test coverage detected