mirage2d 1.1.62 → 1.1.63
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.
|
@@ -75,7 +75,19 @@ export declare class baseGraphicLayer extends baseLayer {
|
|
|
75
75
|
*/
|
|
76
76
|
setFeatureAttribute(uuid: string, attribute: IFeatureAttribute | any): void;
|
|
77
77
|
/**
|
|
78
|
-
|
|
78
|
+
* @description:返回图层所有要素
|
|
79
|
+
* @return {*} 返回要素数组
|
|
80
|
+
*/
|
|
81
|
+
getFeaturesAll(): Feature<Geometry>[];
|
|
82
|
+
/**
|
|
83
|
+
* @description:按字段名、属性查询
|
|
84
|
+
* @param {*} fieldName 字段名
|
|
85
|
+
* @param {*} fieldVal 字段值
|
|
86
|
+
* @return {*} 返回要素数组
|
|
87
|
+
*/
|
|
88
|
+
getFeaturesByFieldName(fieldName: any, fieldVal: any): any;
|
|
89
|
+
/**
|
|
90
|
+
* @description:按classname查询
|
|
79
91
|
* @param {*} classname 分类名
|
|
80
92
|
* @return {*} 返回要素数组
|
|
81
93
|
*/
|
|
@@ -129,6 +129,26 @@
|
|
|
129
129
|
}
|
|
130
130
|
]
|
|
131
131
|
},
|
|
132
|
+
{
|
|
133
|
+
"pid": 10,
|
|
134
|
+
"name": "星图卫星",
|
|
135
|
+
"type": "TileGroupLayer",
|
|
136
|
+
"icon": "image/basemaps/gaode_vec.png",
|
|
137
|
+
"layers": [
|
|
138
|
+
{
|
|
139
|
+
"name": "底图",
|
|
140
|
+
"type": "xyz",
|
|
141
|
+
"layer": "img_d",
|
|
142
|
+
"url": "https://tiles1.geovisearth.com/base/v1/img/{z}/{x}/{y}?format=webp&tmsIds=w&token=934e80b8d980d48b95d452cbcda6aff82b2d1e61ea76c776acc51f469d9f6d56"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "注记",
|
|
146
|
+
"type": "xyz",
|
|
147
|
+
"layer": "img_z",
|
|
148
|
+
"url": "https://tiles1.geovisearth.com/base/v1/cia/{z}/{x}/{y}?format=webp&tmsIds=w&token=934e80b8d980d48b95d452cbcda6aff82b2d1e61ea76c776acc51f469d9f6d56"
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
},
|
|
132
152
|
{
|
|
133
153
|
"pid": 10,
|
|
134
154
|
"name": "ArcGIS地图",
|