* @private * @function WebMap.prototype.formatScale * @description 将有千位符的数字转为普通数字。例如:1,234 => 1234 * @param {number} scale - 比例尺分母
(scale)
| 528 | * @param {number} scale - 比例尺分母 |
| 529 | */ |
| 530 | formatScale(scale) { |
| 531 | return scale.replace(/,/g, ''); |
| 532 | } |
| 533 | /** |
| 534 | * @private |
| 535 | * @function WebMap.prototype.createSpecLayer |