mirage2d 1.1.98 → 1.2.1
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.
|
@@ -99,7 +99,7 @@ export declare class SpatialAnalysis {
|
|
|
99
99
|
* @param {*} featureList 查询的数据列表
|
|
100
100
|
* @return {*} 包含的featureList
|
|
101
101
|
*/
|
|
102
|
-
static booleanContains(feature: any, featureList: any): any[];
|
|
102
|
+
static booleanContains(feature: any, featureList: Feature<Geometry>[] | any): any[];
|
|
103
103
|
/**
|
|
104
104
|
* @description: 创建泰森多边形
|
|
105
105
|
* @param {string} type 范围pointToPolygonType.voronoi tin convex
|
|
@@ -8,6 +8,7 @@ export declare enum featureType {
|
|
|
8
8
|
onFeatureContextmenu = "FeatureContextmenu",
|
|
9
9
|
onFeatureMousemove = "mousemove",
|
|
10
10
|
onFeatureMouseout = "mouseout",
|
|
11
|
+
onFeaturesLoad = "onFeaturesLoad",
|
|
11
12
|
onFeaturePopupOpen = "popupopen",
|
|
12
13
|
onFeaturePopupClose = "popupclose",
|
|
13
14
|
onFeatureTooltipOpen = "tooltipopen",
|