Skip to content

Commit 124fe85

Browse files
committed
GenerateSpatialDataParameters增加attributeFilter参数
1 parent 29365e8 commit 124fe85

File tree

13 files changed

+53
-30
lines changed

13 files changed

+53
-30
lines changed

build/jsdocs/leaflet/categories.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

build/jsdocs/mapboxgl/categories.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

build/jsdocs/openlayers/categories.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/iclient9-leaflet.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30427,10 +30427,7 @@ var MapVRenderer = exports.MapVRenderer = function (_BaseLayer) {
3042730427
key: 'clearData',
3042830428
value: function clearData() {
3042930429
this.dataSet && this.dataSet.clear();
30430-
this.dataSet.add(null);
30431-
this.update({
30432-
options: null
30433-
});
30430+
this.update({ options: null });
3043430431
}
3043530432
}, {
3043630433
key: '_canvasUpdate',
@@ -53082,6 +53079,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
5308253079
* @param options - {Object} 可选参数。如:</br>
5308353080
* routeTable - {string} 路由数据集。</br>
5308453081
* routeIDField - {string} 路由数据集的标识字段。</br>
53082+
* attributeFilter - {string} 属性过滤条件。</br>
5308553083
* eventTable - {string} 用于生成空间数据的事件表名。</br>
5308653084
* eventRouteIDField - {string} 用于生成空间数据的事件表的路由标识字段。</br>
5308753085
* measureField - {string} 用于生成空间数据的事件表的刻度字段,只有当事件为点事件的时候该属性才有意义</br>
@@ -53107,7 +53105,11 @@ var GenerateSpatialDataParameters = exports.GenerateSpatialDataParameters = func
5310753105
* @description 路由数据集的标识字段。
5310853106
*/
5310953107
this.routeIDField = null;
53110-
53108+
/**
53109+
* @member SuperMap.GenerateSpatialDataParameters.prototype.attributeFilter - {string}
53110+
* @description 属性过滤条件。
53111+
*/
53112+
this.attributeFilter = null;
5311153113
/**
5311253114
* @member SuperMap.GenerateSpatialDataParameters.prototype.eventTable - {string}
5311353115
* @description 用于生成空间数据的事件表名。
@@ -53184,6 +53186,7 @@ var GenerateSpatialDataParameters = exports.GenerateSpatialDataParameters = func
5318453186
me.routeTable = null;
5318553187
}
5318653188
me.routeIDField = null;
53189+
me.attributeFilter = null;
5318753190
me.eventTable = null;
5318853191
me.eventRouteIDField = null;
5318953192
me.measureField = null;
@@ -59447,7 +59450,7 @@ var SpatialAnalystService = exports.SpatialAnalystService = _ServiceBase.Service
5944759450
},
5944859451

5944959452
/**
59450-
* @function L.supermap.spatialAnalystService.prototype.generateSpatialData
59453+
* @function L.supermap.spatialAnalystService.prototype.geoRelationAnalysis
5945159454
* @description 空间关系分析
5945259455
* @param params - {SuperMap.GeoRelationAnalystParameters} 空间关系分析服务参数类
5945359456
* @param callback - {function} 回调函数

dist/iclient9-leaflet.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/iclient9-mapboxgl.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46291,6 +46291,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
4629146291
* @param options - {Object} 可选参数。如:</br>
4629246292
* routeTable - {string} 路由数据集。</br>
4629346293
* routeIDField - {string} 路由数据集的标识字段。</br>
46294+
* attributeFilter - {string} 属性过滤条件。</br>
4629446295
* eventTable - {string} 用于生成空间数据的事件表名。</br>
4629546296
* eventRouteIDField - {string} 用于生成空间数据的事件表的路由标识字段。</br>
4629646297
* measureField - {string} 用于生成空间数据的事件表的刻度字段,只有当事件为点事件的时候该属性才有意义</br>
@@ -46316,7 +46317,11 @@ var GenerateSpatialDataParameters = exports.GenerateSpatialDataParameters = func
4631646317
* @description 路由数据集的标识字段。
4631746318
*/
4631846319
this.routeIDField = null;
46319-
46320+
/**
46321+
* @member SuperMap.GenerateSpatialDataParameters.prototype.attributeFilter - {string}
46322+
* @description 属性过滤条件。
46323+
*/
46324+
this.attributeFilter = null;
4632046325
/**
4632146326
* @member SuperMap.GenerateSpatialDataParameters.prototype.eventTable - {string}
4632246327
* @description 用于生成空间数据的事件表名。
@@ -46393,6 +46398,7 @@ var GenerateSpatialDataParameters = exports.GenerateSpatialDataParameters = func
4639346398
me.routeTable = null;
4639446399
}
4639546400
me.routeIDField = null;
46401+
me.attributeFilter = null;
4639646402
me.eventTable = null;
4639746403
me.eventRouteIDField = null;
4639846404
me.measureField = null;

dist/iclient9-mapboxgl.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/iclient9-openlayers.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51666,6 +51666,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
5166651666
* @param options - {Object} 可选参数。如:</br>
5166751667
* routeTable - {string} 路由数据集。</br>
5166851668
* routeIDField - {string} 路由数据集的标识字段。</br>
51669+
* attributeFilter - {string} 属性过滤条件。</br>
5166951670
* eventTable - {string} 用于生成空间数据的事件表名。</br>
5167051671
* eventRouteIDField - {string} 用于生成空间数据的事件表的路由标识字段。</br>
5167151672
* measureField - {string} 用于生成空间数据的事件表的刻度字段,只有当事件为点事件的时候该属性才有意义</br>
@@ -51691,7 +51692,11 @@ var GenerateSpatialDataParameters = exports.GenerateSpatialDataParameters = func
5169151692
* @description 路由数据集的标识字段。
5169251693
*/
5169351694
this.routeIDField = null;
51694-
51695+
/**
51696+
* @member SuperMap.GenerateSpatialDataParameters.prototype.attributeFilter - {string}
51697+
* @description 属性过滤条件。
51698+
*/
51699+
this.attributeFilter = null;
5169551700
/**
5169651701
* @member SuperMap.GenerateSpatialDataParameters.prototype.eventTable - {string}
5169751702
* @description 用于生成空间数据的事件表名。
@@ -51768,6 +51773,7 @@ var GenerateSpatialDataParameters = exports.GenerateSpatialDataParameters = func
5176851773
me.routeTable = null;
5176951774
}
5177051775
me.routeIDField = null;
51776+
me.attributeFilter = null;
5177151777
me.eventTable = null;
5177251778
me.eventRouteIDField = null;
5177351779
me.measureField = null;

dist/iclient9-openlayers.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
"scripts": {
1212
"lint": "eslint src",
1313
"release": "npm run release-leaflet && npm run release-openlayers && npm run release-mapboxgl && npm run release-classic",
14-
"release-leaflet": "npm run deploy-leaflet && npm run compress-leaflet",
15-
"release-openlayers": "npm run deploy-openlayers && npm run compress-openlayers",
16-
"release-mapboxgl": "npm run deploy-mapboxgl && npm run compress-mapboxgl",
17-
"release-classic": "npm run deploy-classic && npm run compress-classic",
14+
"release-leaflet": "webpack ./src/leaflet/index.js --config ./build/webpack.config.leaflet.js --color && npm run compress-leaflet",
15+
"release-openlayers": "webpack ./src/openlayers/index.js --config ./build/webpack.config.openlayers.js --color && npm run compress-openlayers",
16+
"release-mapboxgl": "webpack ./src/mapboxgl/index.js --config ./build/webpack.config.mapboxgl.js --color && npm run compress-mapboxgl",
17+
"release-classic": "webpack ./src/classic/index.js --config ./build/webpack.config.classic.js --color && npm run compress-classic",
1818
"deploy": "webpack --color",
19-
"deploy-leaflet": "webpack ./src/leaflet/index.js --config ./build/webpack.config.leaflet.js --color",
20-
"deploy-openlayers": "webpack ./src/openlayers/index.js --config ./build/webpack.config.openlayers.js --color",
21-
"deploy-mapboxgl": "webpack ./src/mapboxgl/index.js --config ./build/webpack.config.mapboxgl.js --color",
22-
"deploy-classic": "webpack ./src/classic/index.js --config ./build/webpack.config.classic.js --color",
19+
"deploy-leaflet": "webpack --config ./build/webpack.config.leaflet.js --color",
20+
"deploy-openlayers": "webpack --config ./build/webpack.config.openlayers.js --color",
21+
"deploy-mapboxgl": "webpack --config ./build/webpack.config.mapboxgl.js --color",
22+
"deploy-classic": "webpack --config ./build/webpack.config.classic.js --color",
2323
"compress-openlayers": "uglifyjs --comments /Copyright©/i -c -m -o ./dist/iclient9-openlayers.min.js -- ./dist/iclient9-openlayers.js && cleancss -o ./dist/iclient9-openlayers.min.css ./dist/iclient9-openlayers.css",
2424
"compress-leaflet": "uglifyjs --comments /Copyright©/i -c -m --ie8 -o ./dist/iclient9-leaflet.min.js -- ./dist/iclient9-leaflet.js && cleancss -o ./dist/iclient9-leaflet.min.css ./dist/iclient9-leaflet.css",
2525
"compress-mapboxgl": "uglifyjs --comments /Copyright©/i -c -m -o ./dist/iclient9-mapboxgl.min.js -- ./dist/iclient9-mapboxgl.js",

0 commit comments

Comments
 (0)