import type { ILayer, ILayerPlugin, L7Container } from '@antv/l7-core'; /** * 在初始化阶段完成属性的注册,以及首次根据 Layer 指定的三角化方法完成 indices 和 attribute 的创建 */ export default class UpdateStyleAttributePlugin implements ILayerPlugin { apply(layer: ILayer, { styleAttributeService }: L7Container): void; private updateStyleAttribute; private initStyleAttribute; }