@@ -6,9 +6,9 @@ import {Util} from '../commontypes/Util';
66 * @category iServer NetworkAnalyst UpstreamCriticalFacilities
77 * @classdesc 上游/下游关键设施查找资源参数类。
88 * @param {Object } options - 参数。
9- * @param {Array.<number> } [ options.sourceNodeIDs] - 指定的设施点ID数组,可以为空 。
10- * @param {number } [options.edgeID] - 指定的弧段ID(注: edgeID 与 nodeID 不能同时使用)。
11- * @param {number } [options.nodeID] - 指定的结点ID(注: edgeID 与 nodeID 不能同时使用)。
9+ * @param {Array.<number> } options.sourceNodeIDs - 指定的设施点ID数组。
10+ * @param {number } [options.edgeID] - 指定的弧段ID, edgeID 与 nodeID 必须指定一个。
11+ * @param {number } [options.nodeID] - 指定的结点ID, edgeID 与 nodeID 必须指定一个。
1212 * @param {boolean } [options.isUncertainDirectionValid=false] - 指定不确定流向是否有效。
1313 * @param {number } options.queryType - 分析类型,只能是 0 (上游关键设施查询) 或者是 1(下游关键设施查询)。
1414 */
@@ -18,19 +18,19 @@ export class FacilityAnalystStreamParameters {
1818 constructor ( options ) {
1919 /**
2020 * @member {Array.<number>} [SuperMap.FacilityAnalystStreamParameters.prototype.sourceNodeIDs]
21- * @description 指定的设施点ID数组,可以为空 。
21+ * @description 指定的设施点ID数组。
2222 */
2323 this . sourceNodeIDs = null ;
2424
2525 /**
2626 * @member {number} [SuperMap.FacilityAnalystStreamParameters.prototype.edgeID]
27- * @description 指定的弧段ID(注: edgeID 与 nodeID 不能同时使用)。
27+ * @description 指定的弧段ID, edgeID 与 nodeID 必须指定一个。
2828 */
2929 this . edgeID = null ;
3030
3131 /**
3232 * @member {number} [SuperMap.FacilityAnalystStreamParameters.prototype.nodeID]
33- * @description 指定的结点ID(注: edgeID 与 nodeID 不能同时使用)。
33+ * @description 指定的结点ID, edgeID 与 nodeID 必须指定一个。
3434 */
3535 this . nodeID = null ;
3636
0 commit comments