@@ -16,17 +16,17 @@ import { GetFeaturesParametersBase } from './GetFeaturesParametersBase';
1616 * <p style="font-size: 13px">推荐设置 returnFeaturesOnly 配置为 true 来提升性能,如果需要获取总数量与数据集信息,FeatureService 提供了 getFeaturesCount 和 getFeaturesDatasetInfo 方法</p>
1717 * </div>
1818 * @param {Object } options - 参数。
19- * @param {ModuleBounds } options.bounds - 查询的范围对象 。
19+ * @param {ModuleBounds } options.bounds - 查询的矩形坐标范围 。
2020 * @param {Array.<string> } options.datasetNames - 数据集名称列表。
2121 * @param {string } [options.attributeFilter] - 范围查询属性过滤条件。
2222 * @param {Array.<string> } [options.fields] - 查询结果返回字段。默认返回所有字段。
2323 * @param {SpatialQueryMode } [options.spatialQueryMode=SpatialQueryMode.CONTAIN] - 空间查询模式。
24- * @param {boolean } [options.returnContent=true] - 是否直接返回查询结果 。
25- * @param {boolean } [options.returnFeaturesOnly=false] - 是否仅返回要素信息。当 returnContent 为 true 时设置有效。
26- * @param {number } [options.fromIndex=0] - 查询结果的最小索引号。
27- * @param {number } [options.toIndex=19] - 查询结果的最大索引号。
28- * @param {string|number } [options.targetEpsgCode] - 动态投影的目标坐标系对应的 EPSG Code,使用此参数时,returnContent 参数需为 true。
29- * @param {Object } [options.targetPrj] - 动态投影的目标坐标系 。使用此参数时,returnContent 参数需为 true。如:prjCoordSys={"epsgCode":3857}。当同时设置 targetEpsgCode 参数时,此参数不生效。
24+ * @param {boolean } [options.returnContent=true] - 是否立即返回新创建资源的表述还是返回新资源的 URI。如果为 true,则直接返回新创建资源,即查询结果的表述。如果为 false,则返回的是查询结果资源的 URI 。
25+ * @param {boolean } [options.returnFeaturesOnly=false] - 是否仅返回要素信息。当 returnContent 为 true 时设置有效。如果为 true,仅返回要素信息,以提升查询性能。如果为 false,返回完整的查询结果,包含查询结果的要素信息、数据集信息以及要素数量。
26+ * @param {number } [options.fromIndex=0] - 查询结果的最小索引号,指定了返回结果的开始位置 。
27+ * @param {number } [options.toIndex=19] - 查询结果的最大索引号,指定了返回结果的结束位置。例如 fromIndex=0&toIndex=2,表示仅返回前 3 条查询结果信息。如果该值大于预期查询结果的最大索引号,则以预期查询结果的最大索引号为实际查询结果的最大索引号 。
28+ * @param {string|number } [options.targetEpsgCode] - 查询结果的目标坐标系对应的 EPSG Code,使用此参数时,returnContent 参数需为 true。
29+ * @param {Object } [options.targetPrj] - 查询结果的目标坐标系 。使用此参数时,returnContent 参数需为 true。如:prjCoordSys={"epsgCode":3857}。当此参数设置的坐标系统不同于数据的原有坐标系统时,系统会进行坐标转换,并返回坐标转换后的查询结果 。当同时设置 targetEpsgCode 参数时,此参数不生效。
3030 * @param {MetricsAggParameter|GeoHashGridAggParameter } [options.aggregations] - 聚合查询参数。该参数仅支持数据来源为 Elasticsearch 服务的 SuperMap iServer 的 REST 数据服务。
3131 * @extends {GetFeaturesParametersBase }
3232 * @usage
@@ -43,7 +43,7 @@ export class GetFeaturesByBoundsParameters extends GetFeaturesParametersBase {
4343
4444 /**
4545 * @member {ModuleBounds} GetFeaturesByBoundsParameters.prototype.bounds
46- * @description 用于查询的范围对象 。
46+ * @description 查询的矩形坐标范围 。
4747 *
4848 */
4949 this . bounds = null ;
0 commit comments