Skip to content

Commit 1d53f7e

Browse files
committed
[fix]文档注释修改 src:common iserver2 review by jinny
1 parent 4c749d7 commit 1d53f7e

27 files changed

+48
-49
lines changed

src/common/iServer/OverlapDisplayedOptions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {UGCLayer} from './UGCLayer';
1212
* 该类可以分别控制各种类型的对象的压盖显示情况,进而很好地处理地图中各种类型对象的压盖显示问题。
1313
* @param {Object} options - 可选参数。
1414
* @param {boolean} [options.allowPointOverlap=true] - 点和点压盖时是否显示压盖的点对象。
15-
* @param {boolean} [options.allowPointWithTextDisplay=true] - 标签和相应普通图层上的点是否一起过滤显示,如果过滤显示,
15+
* @param {boolean} [options.allowPointWithTextDisplay=true] - 标签和相应普通图层上的点是否一起过滤显示如果过滤显示,
1616
* 只以图层集合中对应数据集的索引最小的图层的点风格来绘制点。
1717
* @param {boolean} [options.allowTextOverlap=false] - 文本压盖时是否显示压盖的文本对象。
1818
* @param {boolean} [options.allowTextAndPointOverlap=true] - 文本和点压盖时是否显示压盖的文本或点对象(此属性不处理文本之间的压盖和点之间的压盖)。

src/common/iServer/RasterFunctionParameter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Util } from '../commontypes/Util';
77
* @class RasterFunctionParameter
88
* @deprecatedclass SuperMap.RasterFunctionParameter
99
* @category iServer Map Tile
10-
* @classdesc iServer 地图服务栅格分析参数基类
10+
* @classdesc iServer 地图服务栅格分析参数基类
1111
* @param {Object} options - 参数。
1212
* @param {RasterFunctionType} options.type - 栅格分析方法。
1313
* @usage

src/common/iServer/Route.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {Collection} from '../commontypes/geometry/Collection';
1414
* @classdesc 路由对象类。路由对象为一系列有序的带有属性值 M 的 x,y 坐标对,其中 M 值为该结点的距离属性(到已知点的距离)。
1515
* @param {Array.<Geometry>} points - 形成路由对象的线数组。
1616
* @param {Object} options - 参数。
17-
* @param {number} options.id - 路由对象在数据库中的 id
17+
* @param {number} options.id - 路由对象在数据库中的 ID
1818
* @param {number} options.length - 路由对象的长度。单位与数据集的单位相同。
1919
* @param {number} [options.maxM] - 最大线性度量值,即所有结点到起始点的量算距离中最大值。
2020
* @param {number} [options.minM] - 最小线性度量值,即所有结点到起始点的量算距离中最小值。
@@ -98,7 +98,7 @@ export class Route extends Collection {
9898

9999
/**
100100
* @member {Array.<string>} [Route.prototype.componentTypes=LineString]
101-
* @description components 存储的的几何对象所支持的几何类型数组
101+
* @description components 存储的几何对象所支持的几何类型数组
102102
*/
103103
this.componentTypes = ["SuperMap.Geometry.LinearRing", "SuperMap.Geometry.LineString"];
104104

src/common/iServer/ServerTheme.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class ServerTheme extends UGCSubLayer {
5757

5858
/**
5959
* @function ServerTheme.prototype.fromJson
60-
* @description 将服务端 JSON 对象转换成当前客户端对象
60+
* @description 将服务端 JSON 对象转换成当前客户端对象
6161
* @param {Object} jsonObject - 要转换的 JSON 对象。
6262
*/
6363
fromJson(jsonObject) {

src/common/iServer/SetLayerStatusParameters.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {Util} from '../commontypes/Util';
77
* @class SetLayerStatusParameters
88
* @deprecatedclass SuperMap.SetLayerStatusParameters
99
* @category iServer Map TempLayersSet
10-
* @classdesc 子图层显示控制参数类,该类存储了各子图层是否可见的状态。
10+
* @classdesc 子图层显示控制参数类该类存储了各子图层是否可见的状态。
1111
* 注意在 SuperMap iClient 系列产品中所说的图层与 SuperMap Deskpro 的地图对应,子图层与 SuperMap Deskpro 的图层对应。
1212
* @param {Object} options - 参数。
1313
* @param {Array.<LayerStatus>} options.layerStatusList - 获取或设置图层可见状态({@link LayerStatus})集合,
@@ -33,8 +33,8 @@ export class SetLayerStatusParameters {
3333

3434
/**
3535
* @member {string} SetLayerStatusParameters.prototype.resourceID
36-
* @description 获取或设置资源服务ID。如果设置该参数则会在指定的 TempLayer 进行图层的显示控制
37-
* 如果不设置该参数,则会首先创建一个 TempLayer ,然后在新创建的 TempLayer 进行图层的显示控制
36+
* @description 获取或设置资源服务ID。如果设置该参数则会在指定的 TempLayer 中进行图层的显示控制
37+
* 如果不设置该参数,则会首先创建一个 TempLayer ,然后在新创建的 TempLayer 中进行图层的显示控制
3838
*/
3939
this.resourceID = null;
4040

src/common/iServer/SetLayersInfoParameters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class SetLayersInfoParameters {
2525
this.isTempLayers = null;
2626
/**
2727
* @member {string} SetLayersInfoParameters.prototype.resourceID
28-
* @description 临时图层资源 ID
28+
* @description 临时图层资源 ID
2929
*/
3030
this.resourceID = null;
3131

src/common/iServer/Sortby.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ import { Util } from '../commontypes/Util';
1010
* @category BaseTypes Util
1111
* @param {Object} options - 参数。
1212
* @param {string} options.field 属性名称。
13-
* @param {Sortby.Direction} options.direction 排序规则, 默认升序。
13+
* @param {Sortby.Direction} options.direction 排序规则,默认升序。
1414
* @usage
1515
*/
1616
export default class Sortby {
1717
constructor(options) {
1818
/**
19-
* @description 属性名称
19+
* @description 属性名称
2020
* @member {string} Sortby.prototype.field
2121
*/
2222
this.field = undefined;
2323
/**
24-
* @description 排序规则
24+
* @description 排序规则
2525
* @member {Sortby.Direction} Sortby.prototype.direction
2626
* @default Sortby.Direction.ASC
2727
*/

src/common/iServer/SummaryRegionJobParameter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { MappingParameters } from './MappingParameters';
1919
* @param {StatisticAnalystMode} [options.standardStatisticModes] - 标准属性字段的统计模式。standardSummaryFields 为 true 时必填。
2020
* @param {StatisticAnalystMode} [options.weightedStatisticModes] - 权重字段的统计模式。weightedSummaryFields 为 true 时必填。
2121
* @param {boolean} [options.sumShape=true] - 是否统计长度或面积。
22-
* @param {boolean} [options.standardSummaryFields=false] - 是否以标准属字段统计
22+
* @param {boolean} [options.standardSummaryFields=false] - 是否以标准属性字段统计
2323
* @param {boolean} [options.weightedSummaryFields=false] - 是否以权重字段统计。
2424
* @param {number} [options.resolution=100] - 网格大小。
2525
* @param {number} [options.meshType=0] - 网格面汇总类型。
@@ -122,7 +122,7 @@ export class SummaryRegionJobParameter {
122122

123123
/**
124124
* @member {OutputSetting} SummaryRegionJobParameter.prototype.output
125-
* @description 输出参数设置类
125+
* @description 输出参数设置类
126126
*/
127127
this.output = null;
128128

src/common/iServer/SurfaceAnalystParametersSetting.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ export class SurfaceAnalystParametersSetting {
3434
/**
3535
* @member {number} [SurfaceAnalystParametersSetting.prototype.datumValue=0]
3636
* @description 获取或设置表面分析中提取等值线、提取等值面的基准值。
37-
* 基准值是作为一个生成等值线的初始起算值,并不一定是最小等值线的值。 例如,高程范围为 220 -1550 的 DEM 栅格数据,
38-
* 如果设基准值为 0, 等值距为 50,则提取等值线时,以基准值 0 为起点,等值距 50 为间隔提取等值线,
37+
* 基准值是作为一个生成等值线的初始起算值,并不一定是最小等值线的值。例如,高程范围为 220 -1550 的 DEM 栅格数据,
38+
* 如果设基准值为 0,等值距为 50,则提取等值线时,以基准值 0 为起点,等值距 50 为间隔提取等值线,
3939
* 因为给定高程的最小值是 220,所以,在给定范围内提取等值线的最小高程是 250。
4040
* 提取等值线的结果是:最小等值线值为 250,最大等值线值为 1550。
4141
*/

src/common/iServer/ThemeGraph.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {ThemeGraphType, GraduatedMode, GraphAxesTextDisplayMode} from '../REST';
2424
* @param {ThemeGraphAxes} [options.graphAxes] - 统计图中坐标轴样式相关信息。
2525
* @param {ThemeGraphSize} [options.graphSize=0] - 统计符号的最大最小尺寸。
2626
* @param {boolean} [options.graphSizeFixed=false] - 缩放地图时统计图符号是否固定大小。
27-
* @param {ThemeGraphText} [options.graphText] - 统计图上的文字是否可以见以及文字标注风格
27+
* @param {ThemeGraphText} [options.graphText] - 统计图上的文字是否可见以及文字标注风格
2828
* @param {GraphAxesTextDisplayMode} [options.graphAxesTextDisplayMode=GraphAxesTextDisplayMode.NONE] - 统计专题图坐标轴文本显示模式。
2929
* @param {ThemeGraphType} [options.graphType=ThemeGraphType.AREA] - 统计专题图类型。
3030
* @param {Array.<number>} [options.memoryKeys] - 以内存数组方式制作专题图时的键数组。
@@ -74,7 +74,7 @@ export class ThemeGraph extends Theme {
7474

7575
/**
7676
* @member {ThemeGraphText} ThemeGraph.prototype.graphText
77-
* @description 统计图上的文字是否可以见以及文字标注风格
77+
* @description 统计图上的文字是否可见以及文字标注风格
7878
*/
7979
this.graphText = new ThemeGraphText();
8080

@@ -148,7 +148,7 @@ export class ThemeGraph extends Theme {
148148
* maxGraphSize: 1,
149149
* minGraphSize: 0.35
150150
* }),
151-
* //统计图上的文字是否可以见以及文字标注风格
151+
* //统计图上的文字是否可见以及文字标注风格
152152
* graphText: new ThemeGraphText({
153153
* graphTextDisplayed: true,
154154
* graphTextFormat: ThemeGraphTextFormat.VALUE,
@@ -181,7 +181,7 @@ export class ThemeGraph extends Theme {
181181

182182
/**
183183
* @member {boolean} [ThemeGraph.prototype.negativeDisplayed=false]
184-
* @description 专题图中是否显示属性为负值的数据。true 表示显示;falese 不显示。
184+
* @description 专题图中是否显示属性为负值的数据。true 表示显示;false 不显示。
185185
*/
186186
this.negativeDisplayed = false;
187187

0 commit comments

Comments
 (0)