mirage2d 1.1.63 → 1.1.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -68,6 +68,11 @@ export declare class baseGraphicLayer extends baseLayer {
|
|
|
68
68
|
* @param {IFeatureAttribute} 要素属性数组
|
|
69
69
|
*/
|
|
70
70
|
setFeaturesAttribute(attribute: IFeatureAttribute | any): void;
|
|
71
|
+
/**
|
|
72
|
+
* @description:设置要素属性
|
|
73
|
+
* @param {IFeatureAttribute} 要素属性数组
|
|
74
|
+
*/
|
|
75
|
+
setFeaturesAttributeByClassName(classname: string, attribute: IFeatureAttribute | any): void;
|
|
71
76
|
/**
|
|
72
77
|
* @description:设置要素属性
|
|
73
78
|
* @param {string} uuid 要素uuid
|
|
@@ -119,6 +124,7 @@ export declare class baseGraphicLayer extends baseLayer {
|
|
|
119
124
|
}): IlevelColor[];
|
|
120
125
|
setSymbolByClassname(classname: any, styleOptions: any, callback?: Function): void;
|
|
121
126
|
setSymbolByFeatures(features: any, styleOptions: any, callback?: Function): void;
|
|
127
|
+
setSymbolByStyleClass(styleClassOptions: any): void;
|
|
122
128
|
setClassSymbol(classname: any, styleClassOptions: any): void;
|
|
123
129
|
/**设置标签启用
|
|
124
130
|
* @description:
|