()
| 285 | this.fire('load', { bounds: bounds }); |
| 286 | }; |
| 287 | var onError = function() { |
| 288 | this._map && this._map.removeLayer(this._currentImage); |
| 289 | /** |
| 290 | * @event ImageMapLayer#error |
| 291 | * @description 请求图层加载失败后触发。 |
| 292 | */ |
| 293 | this.fire('error'); |
| 294 | } |
| 295 | this._currentImage.off('load'); |
| 296 | this._currentImage.once('load', onLoad, this); |
| 297 | this._currentImage.off('error'); |
no test coverage detected