(renderType, styleSetting)
| 825 | } |
| 826 | |
| 827 | _transStyleSetting(renderType, styleSetting) { |
| 828 | for (const key in styleSetting) { |
| 829 | const aliasKey = this._getAliasKey(renderType, key); |
| 830 | if (aliasKey !== key) { |
| 831 | styleSetting[aliasKey] = styleSetting[key]; |
| 832 | } |
| 833 | } |
| 834 | } |
| 835 | |
| 836 | _getLegendSimpleStyle(styleSetting, keys) { |
| 837 | const simpleStyle = {}; |
no test coverage detected