Skip to content

Commit 95db34a

Browse files
committed
[fix]文档注释修改 src:classic commontypes review by jinny
1 parent fea6a10 commit 95db34a

File tree

20 files changed

+161
-161
lines changed

20 files changed

+161
-161
lines changed

src/classic/overlay/MapVLayer.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ import { MapVRenderer } from './mapv/MapVRenderer';
1111
* @extends {SuperMap.Layer}
1212
* @param {string} name - 图层名。
1313
* @param {Object} options - 可选参数。
14-
* @param {Mapv.DataSet} options.dataSet - mapv 的 dataSet 对象。
15-
* @param {Object} options.options - mapv 绘图风格配置信息。
14+
* @param {Mapv.DataSet} options.dataSet - MapV 的 dataSet 对象。
15+
* @param {Object} options.options - MapV 绘图风格配置信息。
1616
*/
1717
export class MapVLayer extends SuperMap.Layer {
1818
constructor(name, options) {
1919
super(name, options);
2020

2121
/**
2222
* @member {Mapv.DataSet} SuperMap.Layer.MapVLayer.prototype.dataSet
23-
* @description mapv 的 dataset 对象。
23+
* @description MapV 的 dataset 对象。
2424
*/
2525
this.dataSet = null;
2626

2727
/**
2828
* @member {Object} SuperMap.Layer.MapVLayer.prototype.options
29-
* @description mapv 绘图风格配置信息。
29+
* @description MapV 绘图风格配置信息。
3030
*/
3131
this.options = null;
3232

@@ -102,8 +102,8 @@ export class MapVLayer extends SuperMap.Layer {
102102
/**
103103
* @function SuperMap.Layer.MapVLayer.prototype.addData
104104
* @description 追加数据。
105-
* @param {Mapv.DataSet} dataSet - mapv 的 dataSet 对象。
106-
* @param {Object} options - mapv 绘图风格配置信息。
105+
* @param {Mapv.DataSet} dataSet - MapV 的 dataSet 对象。
106+
* @param {Object} options - MapV 绘图风格配置信息。
107107
*/
108108
addData(dataSet, options) {
109109
this.renderer && this.renderer.addData(dataSet, options);
@@ -112,8 +112,8 @@ export class MapVLayer extends SuperMap.Layer {
112112
/**
113113
* @function SuperMap.Layer.MapVLayer.prototype.
114114
* @description 设置数据。
115-
* @param {Mapv.DataSet} dataSet - mapv 的 dataSet 对象。
116-
* @param {Object} options - mapv 绘图风格配置信息。
115+
* @param {Mapv.DataSet} dataSet - MapV 的 dataSet 对象。
116+
* @param {Object} options - MapV 绘图风格配置信息。
117117
*/
118118
setData(dataSet, options) {
119119
this.renderer && this.renderer.setData(dataSet, options);
@@ -122,7 +122,7 @@ export class MapVLayer extends SuperMap.Layer {
122122
/**
123123
* @function SuperMap.Layer.MapVLayer.prototype.getData
124124
* @description 获取数据。
125-
* @returns {Mapv.DataSet} mapv 的 dataSet 对象。
125+
* @returns {Mapv.DataSet} MapV 的 dataSet 对象。
126126
*/
127127
getData() {
128128
if (this.renderer) {
@@ -149,7 +149,7 @@ export class MapVLayer extends SuperMap.Layer {
149149

150150
/**
151151
* @function SuperMap.Layer.MapVLayer.prototype.clearData
152-
* @description 清除数据
152+
* @description 清除数据
153153
*/
154154
clearData() {
155155
this.renderer.clearData();

src/classic/services/ProcessingService.js

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class ProcessingService extends CommonServiceBase {
7070
/**
7171
* @function SuperMap.REST.ProcessingService.prototype.getKernelDensityJob
7272
* @description 获取某一个密度分析。
73-
* @param {string} id - 空间分析的 id
73+
* @param {string} id - 空间分析的 ID
7474
* @param {function} callback - 回调函数。
7575
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
7676
*/
@@ -124,7 +124,7 @@ export class ProcessingService extends CommonServiceBase {
124124
/**
125125
* @function SuperMap.REST.ProcessingService.prototype.getKernelDensityJobState
126126
* @description 获取密度分析的状态。
127-
* @param {string} id - 密度分析的 id
127+
* @param {string} id - 密度分析的 ID
128128
* @returns {Object} 密度分析的状态。
129129
*/
130130
getKernelDensityJobState(id) {
@@ -158,7 +158,7 @@ export class ProcessingService extends CommonServiceBase {
158158
/**
159159
* @function SuperMap.REST.ProcessingService.prototype.getSummaryMeshJob
160160
* @description 获取点聚合分析。
161-
* @param {string} id - 点聚合分析的 id
161+
* @param {string} id - 点聚合分析的 ID
162162
* @param {function} callback - 回调函数。
163163
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
164164
*/
@@ -212,7 +212,7 @@ export class ProcessingService extends CommonServiceBase {
212212
/**
213213
* @function SuperMap.REST.ProcessingService.prototype.getSummaryMeshJobState
214214
* @description 获取点聚合分析的状态。
215-
* @param {string} id - 点聚合分析的 id
215+
* @param {string} id - 点聚合分析的 ID
216216
* @returns {Object} 点聚合分析的状态。
217217
*/
218218
getSummaryMeshJobState(id) {
@@ -246,7 +246,7 @@ export class ProcessingService extends CommonServiceBase {
246246
/**
247247
* @function SuperMap.REST.ProcessingService.prototype.getQueryJob
248248
* @description 获取单对象查询分析。
249-
* @param {string} id - 单对象查询分析的 id
249+
* @param {string} id - 单对象查询分析的 ID
250250
* @param {function} callback - 回调函数。
251251
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
252252
*/
@@ -302,8 +302,8 @@ export class ProcessingService extends CommonServiceBase {
302302
/**
303303
* @function SuperMap.REST.ProcessingService.prototype.getQueryJobState
304304
* @description 获取单对象查询分析的状态。
305-
* @param {string} id - 单对象查询分析的 id
306-
* @returns {Object} 单对象查询分析的状态
305+
* @param {string} id - 单对象查询分析的 ID
306+
* @returns {Object} 单对象查询分析的状态
307307
*/
308308
getQueryJobState(id) {
309309
return this.queryJobs[id];
@@ -337,7 +337,7 @@ export class ProcessingService extends CommonServiceBase {
337337
/**
338338
* @function SuperMap.REST.ProcessingService.prototype.getSummaryRegionJob
339339
* @description 获取某一个区域汇总分析。
340-
* @param {string} id - 区域汇总分析的 id
340+
* @param {string} id - 区域汇总分析的 ID
341341
* @param {function} callback - 回调函数。
342342
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
343343
*/
@@ -391,7 +391,7 @@ export class ProcessingService extends CommonServiceBase {
391391
/**
392392
* @function SuperMap.REST.ProcessingService.prototype.getSummaryRegionJobState
393393
* @description 获取区域汇总分析的状态。
394-
* @param {string} id - 区域汇总分析的 id
394+
* @param {string} id - 区域汇总分析的 ID
395395
* @returns {Object} 区域汇总分析的状态。
396396
*/
397397
getSummaryRegionJobState(id) {
@@ -425,7 +425,7 @@ export class ProcessingService extends CommonServiceBase {
425425
/**
426426
* @function SuperMap.REST.ProcessingService.prototype.getVectorClipJob
427427
* @description 获取矢量裁剪分析。
428-
* @param {string} id - 矢量裁剪分析的 id
428+
* @param {string} id - 矢量裁剪分析的 ID
429429
* @param {function} callback - 回调函数。
430430
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
431431
*/
@@ -480,7 +480,7 @@ export class ProcessingService extends CommonServiceBase {
480480
/**
481481
* @function SuperMap.REST.ProcessingService.prototype.getVectorClipJobState
482482
* @description 获取矢量裁剪分析的状态。
483-
* @param {string} id - 矢量裁剪分析的 id
483+
* @param {string} id - 矢量裁剪分析的 ID
484484
* @returns {Object} 矢量裁剪分析的状态。
485485
*/
486486
getVectorClipJobState(id) {
@@ -514,7 +514,7 @@ export class ProcessingService extends CommonServiceBase {
514514
/**
515515
* @function SuperMap.REST.ProcessingService.prototype.getOverlayGeoJob
516516
* @description 获取叠加分析。
517-
* @param {string} id - 叠加分析的 id
517+
* @param {string} id - 叠加分析的 ID
518518
* @param {function} callback - 回调函数。
519519
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
520520
*/
@@ -568,7 +568,7 @@ export class ProcessingService extends CommonServiceBase {
568568
/**
569569
* @function SuperMap.REST.ProcessingService.prototype.getoverlayGeoJobState
570570
* @description 获取叠加分析的状态。
571-
* @param {string} id - 叠加分析的 id
571+
* @param {string} id - 叠加分析的 ID
572572
* @returns {Object} 叠加分析的状态。
573573
*/
574574
getoverlayGeoJobState(id) {
@@ -602,7 +602,7 @@ export class ProcessingService extends CommonServiceBase {
602602
/**
603603
* @function SuperMap.REST.ProcessingService.prototype.getBuffersJob
604604
* @description 获取缓冲区分析。
605-
* @param {string} id - 缓冲区分析的 id
605+
* @param {string} id - 缓冲区分析的 ID
606606
* @param {function} callback - 回调函数。
607607
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
608608
*/
@@ -656,7 +656,7 @@ export class ProcessingService extends CommonServiceBase {
656656
/**
657657
* @function SuperMap.REST.ProcessingService.prototype.getBuffersJobState
658658
* @description 获取缓冲区分析的状态。
659-
* @param {string} id - 缓冲区分析的 id
659+
* @param {string} id - 缓冲区分析的 ID
660660
* @returns {Object} 缓冲区分析的状态。
661661
*/
662662
getBuffersJobState(id) {
@@ -690,7 +690,7 @@ export class ProcessingService extends CommonServiceBase {
690690
/**
691691
* @function SuperMap.REST.ProcessingService.prototype.getTopologyValidatorJob
692692
* @description 获取拓扑检查分析。
693-
* @param {string} id - 拓扑检查分析的 id
693+
* @param {string} id - 拓扑检查分析的 ID
694694
* @param {function} callback - 回调函数。
695695
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
696696
*/
@@ -744,7 +744,7 @@ export class ProcessingService extends CommonServiceBase {
744744
/**
745745
* @function SuperMap.REST.ProcessingService.prototype.getTopologyValidatorJobState
746746
* @description 获取拓扑检查分析的状态。
747-
* @param {string} id - 拓扑检查分析的 id
747+
* @param {string} id - 拓扑检查分析的 ID
748748
* @returns {Object} 拓扑检查分析的状态。
749749
*/
750750
getTopologyValidatorJobState(id) {
@@ -778,7 +778,7 @@ export class ProcessingService extends CommonServiceBase {
778778
/**
779779
* @function SuperMap.REST.ProcessingService.prototype.getSummaryAttributesJob
780780
* @description 获取属性汇总分析。
781-
* @param {string} id - 属性汇总分析的 id
781+
* @param {string} id - 属性汇总分析的 ID
782782
* @param {function} callback - 回调函数。
783783
* @param {DataFormat} [resultFormat=DataFormat.GEOJSON] - 返回结果类型。
784784
*/
@@ -832,7 +832,7 @@ export class ProcessingService extends CommonServiceBase {
832832
/**
833833
* @function SuperMap.REST.ProcessingService.prototype.getSummaryAttributesJobState
834834
* @description 获取属性汇总分析的状态。
835-
* @param {string} id - 属性汇总分析的 id
835+
* @param {string} id - 属性汇总分析的 ID
836836
* @returns {Object} 属性汇总分析的状态。
837837
*/
838838
getSummaryAttributesJobState(id) {

0 commit comments

Comments
 (0)