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