* @private * @function WebMap.prototype.isIE * @description 判断当前浏览器是否为IE * @returns {boolean}
()
| 5381 | * @returns {boolean} |
| 5382 | */ |
| 5383 | isIE() { |
| 5384 | if (!!window.ActiveXObject || 'ActiveXObject' in window) { |
| 5385 | return true; |
| 5386 | } |
| 5387 | return false; |
| 5388 | } |
| 5389 | |
| 5390 | /** |
| 5391 | * @private |