* @function ThemeLayer.prototype.addTFEvents * @description 将事件监听添加到图层。 * @private
()
| 401 | * @private |
| 402 | */ |
| 403 | addTFEvents() { |
| 404 | var tfEs = this.TFEvents; |
| 405 | var len = tfEs.length; |
| 406 | for (var i = 0; i < len; i++) { |
| 407 | this.renderer.on(tfEs[i][0], tfEs[i][1]); |
| 408 | } |
| 409 | |
| 410 | } |
| 411 | |
| 412 | /** |
| 413 | * @function ThemeLayer.prototype.getLocalXY |