Skip to content

Commit 260ac5a

Browse files
committed
[fix]icl-1470,1490 补充buffersetting等参数说明
1 parent 7ac944c commit 260ac5a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/common/iServer/BufferSetting.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class BufferSetting {
2424
constructor(options) {
2525
/**
2626
* @member {BufferEndType} [BufferSetting.prototype.endType = BufferEndType.FLAT]
27-
* @description 缓冲区端点枚举值。分为平头和圆头两种。
27+
* @description 缓冲区端点枚举值。分为平头和圆头两种。当设置缓冲区端点为平头时,左侧、右侧缓冲距离需为相同数值。
2828
*/
2929
this.endType = BufferEndType.FLAT;
3030

src/common/iServer/DatasetThiessenAnalystParameters.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ import {ServerGeometry} from './ServerGeometry';
1111
* @category iServer SpatialAnalyst ThiessenAnalyst
1212
* @classdesc 数据集泰森多边形分析参数类。
1313
* @param {Object} options - 参数。
14+
* @param {(GeometryPolygon|L.Polygon|ol.geom.Polygon|GeoJSONObject)} [options.clipRegion] - 结果数据裁剪区域,可以为 null,表示不对结果进行裁剪。
15+
* @param {boolean} [options.createResultDataset] - 是否返回结果数据集。如果为 true,则必须设置属性 resultDatasetName 和 resultDatasourceName。
16+
* @param {string} [options.dataset] - 数据集名称待分析的数据集名称,请使用 "datasetName@datasourceName" 格式来表示。
1417
* @param {FilterParameter} [options.filterQueryParameter] - 过滤参数类,即对数据集中的所有点进行分析。
18+
* @param {string} [options.resultDatasetName] - 指定结果数据集名称。
19+
* @param {boolean} [options.resultDatasourceName] - 指定结果数据集所在数据源。
20+
* @param {boolean} [options.returnResultRegion] - 是否返回分析得到的多边形面数组。
1521
* @extends {ThiessenAnalystParameters}
1622
* @usage
1723
*/

0 commit comments

Comments
 (0)