Class: GetFeaturesByBoundsParameters

GetFeaturesByBoundsParameters

数据集范围查询参数类,该类用于设置数据集范围查询的相关参数。

new SuperMap.GetFeaturesByBoundsParameters(options)

common/iServer/GetFeaturesByBoundsParameters.js, line 6
Name Type Description
options Object

可选参数。如:
bounds - {Object} 用于查询的范围对象。Bounds类型可以是SuperMap.Bounds|L.Bounds|ol.extent。
attributeFilter - {string} 范围查询属性过滤条件。
fields - {Array} 设置查询结果返回字段。默认返回所有字段。
spatialQueryMode - {SuperMap.SpatialQueryMode} 空间查询模式常量,必设参数。
queryParameter - SuperMap.FilterParameter 查询过滤条件参数。
datasetNames - {Array} 数据集集合中的数据集名称列表。
returnContent - {boolean} 是否直接返回查询结果。
fromIndex - {integer} 查询结果的最小索引号。
toIndex - {integer} 查询结果的最大索引号。

Extends

Members

attributeFilterstring

范围查询属性过滤条件。

boundsObject

用于查询的范围对象。Bounds类型可以是SuperMap.Bounds|L.Bounds|ol.extent。

datasetNameArray.<string>

数据集集合中的数据集名称列表。

fieldsArray.<string>

设置查询结果返回字段。当指定了返回结果字段后,则 GetFeaturesResult 中的 features 的属性字段只包含所指定的字段。不设置即返回全部字段。

fromIndexinteger

查询结果的最小索引号。默认值是0,如果该值大于查询结果的最大索引号,则查询结果为空。

getFeatureModestring

数据集查询模式。范围查询有"BOUNDS","BOUNDS_ATTRIBUTEFILTER"两种,当用户设置attributeFilter时会自动切换到BOUNDS_ATTRIBUTEFILTER访问服务。

maxFeaturesinteger

进行SQL查询时,用于设置服务端返回查询结果条目数量,默认为1000。

returnContentboolean

是否立即返回新创建资源的表述还是返回新资源的URI。 如果为 true,则直接返回新创建资源,即查询结果的表述。 如果为 false,则返回的是查询结果资源的 URI。默认为 true。

returnCountOnlyboolean

只返回查询结果的总数,默认为false。

spatialQueryModeSuperMap.SpatialQueryMode

空间查询模式常量,必设参数,默认为CONTAIN。

toIndexinteger

查询结果的最大索引号。默认值是19,如果该值大于查询结果的最大索引号,则以查询结果的最大索引号为终止索引号。

Methods

staticSuperMap.GetFeaturesByBoundsParameters.toJsonParameters(params){string}

common/iServer/GetFeaturesByBoundsParameters.js, line 91

将SuperMap.GetFeaturesByBoundsParameters对象参数转换为JSON字符串。

Name Type Description
params SuperMap.GetFeaturesByBoundsParameters

范围查询参数。

Returns:
Type Description
string 转化后的JSON字符串。

inherited destroy()

common/iServer/GetFeaturesParametersBase.js, line 58

释放资源,将引用资源的属性置空。