File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export class BufferSetting {
24
24
constructor ( options ) {
25
25
/**
26
26
* @member {BufferEndType} [BufferSetting.prototype.endType = BufferEndType.FLAT]
27
- * @description 缓冲区端点枚举值。分为平头和圆头两种。
27
+ * @description 缓冲区端点枚举值。分为平头和圆头两种。当设置缓冲区端点为平头时,左侧、右侧缓冲距离需为相同数值。
28
28
*/
29
29
this . endType = BufferEndType . FLAT ;
30
30
Original file line number Diff line number Diff line change @@ -11,7 +11,13 @@ import {ServerGeometry} from './ServerGeometry';
11
11
* @category iServer SpatialAnalyst ThiessenAnalyst
12
12
* @classdesc 数据集泰森多边形分析参数类。
13
13
* @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" 格式来表示。
14
17
* @param {FilterParameter } [options.filterQueryParameter] - 过滤参数类,即对数据集中的所有点进行分析。
18
+ * @param {string } [options.resultDatasetName] - 指定结果数据集名称。
19
+ * @param {boolean } [options.resultDatasourceName] - 指定结果数据集所在数据源。
20
+ * @param {boolean } [options.returnResultRegion] - 是否返回分析得到的多边形面数组。
15
21
* @extends {ThiessenAnalystParameters }
16
22
* @usage
17
23
*/
You can’t perform that action at this time.
0 commit comments