@@ -2211,7 +2211,7 @@ SuperMap.REST.ProcessingService = SuperMap.Class(ServiceBase, {
22112211
22122212 /**
22132213 * @function SuperMap.REST.ProcessingService.prototype.getSummaryMeshJobs
2214- * @description 获取格网聚合分析的列表 。
2214+ * @description 获取点聚合分析的列表 。
22152215 * @param callback - {function} 请求结果的回调函数。
22162216 * @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
22172217 * @return {SuperMap.REST.ProcessingService }
@@ -2234,7 +2234,7 @@ SuperMap.REST.ProcessingService = SuperMap.Class(ServiceBase, {
22342234
22352235 /**
22362236 * @function SuperMap.REST.ProcessingService.prototype.getSummaryMeshJob
2237- * @description 获取某一个格网聚合分析 。
2237+ * @description 获取某一个点聚合分析 。
22382238 * @param id - {String}空间分析的id。
22392239 * @param callback - {function} 请求结果的回调函数。
22402240 * @param resultFormat - {SuperMap.DataFormat}返回的结果类型(默认为GeoJSON)。
@@ -2258,8 +2258,8 @@ SuperMap.REST.ProcessingService = SuperMap.Class(ServiceBase, {
22582258
22592259 /**
22602260 * @function SuperMap.REST.ProcessingService.prototype.addSummaryMeshJob
2261- * @description 新建一个格网聚合分析 。
2262- * @param params - {SuperMap.SummaryMeshJobParameter} 格网聚合分析任务参数类 。
2261+ * @description 新建一个点聚合分析 。
2262+ * @param params - {SuperMap.SummaryMeshJobParameter} 点聚合分析任务参数类 。
22632263 * @param callback - {function} 请求结果的回调函数。
22642264 * @param seconds - {Number} 开始创建后,获取创建成功结果的时间间隔
22652265 * @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
@@ -2286,8 +2286,8 @@ SuperMap.REST.ProcessingService = SuperMap.Class(ServiceBase, {
22862286
22872287 /**
22882288 * @function SuperMap.REST.ProcessingService.prototype.getSummaryMeshJobState
2289- * @description 获取格网聚合分析的状态 。
2290- * @param id - {String} 格网聚合分析的id 。
2289+ * @description 获取点聚合分析的状态 。
2290+ * @param id - {String} 点聚合分析的id 。
22912291 */
22922292 getSummaryMeshJobState : function getSummaryMeshJobState ( id ) {
22932293 return this . summaryMeshJobs [ id ] ;
@@ -3463,7 +3463,7 @@ var SuperMap = __webpack_require__(0);
34633463
34643464/**
34653465 * @class SuperMap.SummaryMeshJobParameter
3466- * @description 格网聚合分析任务参数类
3466+ * @description 点聚合分析任务参数类
34673467 * @param options - {Object} 可选参数。如:<br>
34683468 * datasetName -{String} 数据集名。<br>
34693469 * query -{SuperMap.Bounds} 分析范围。<br>
@@ -3589,8 +3589,8 @@ var SummaryMeshJobParameter = __webpack_require__(19);
35893589
35903590/**
35913591 * @class SuperMap.SummaryMeshJobsService
3592- * @description 格网聚合分析大数据任务类 。
3593- * @param url -{String} 格网聚合分析任务地址 。
3592+ * @description 点聚合分析大数据任务类 。
3593+ * @param url -{String} 点聚合分析任务地址 。
35943594 * @param options - {Object} 交互服务时所需可选参数。
35953595 */
35963596SuperMap . SummaryMeshJobsService = SuperMap . Class ( ProcessingServiceBase , {
@@ -3609,15 +3609,15 @@ SuperMap.SummaryMeshJobsService = SuperMap.Class(ProcessingServiceBase, {
36093609
36103610 /**
36113611 * @function SuperMap.SummaryMeshJobsService.protitype.getSummaryMeshJobs
3612- * @description 获取格网聚合分析大数据
3612+ * @description 获取点聚合分析大数据
36133613 */
36143614 getSummaryMeshJobs : function getSummaryMeshJobs ( ) {
36153615 return ProcessingServiceBase . prototype . getJobs . apply ( this , [ this . url ] ) ;
36163616 } ,
36173617
36183618 /**
36193619 * @function SuperMap.SummaryMeshJobsService.protitype.getSummaryMeshJob
3620- * @description 获取指定ip的格网聚合分析大数据
3620+ * @description 获取指定ip的点聚合分析大数据
36213621 * @param id -{String} 指定要获取数据的id
36223622 */
36233623 getSummaryMeshJob : function getSummaryMeshJob ( id ) {
@@ -3626,7 +3626,7 @@ SuperMap.SummaryMeshJobsService = SuperMap.Class(ProcessingServiceBase, {
36263626
36273627 /**
36283628 * @function SuperMap.SummaryMeshJobsService.protitype.addSummaryMeshJob
3629- * @description 新建格网聚合分析大数据服务
3629+ * @description 新建点聚合分析大数据服务
36303630 * @param params - {SuperMap.SummaryMeshJobParameter} 创建一个空间分析的请求参数。
36313631 * @param seconds - {Number} 开始创建后,获取创建成功结果的时间间隔。
36323632 */
0 commit comments