Class: GetFeaturesByGeometryParameters

GetFeaturesByGeometryParameters

数据集几何查询参数类。该类用于设置数据集几何查询的相关参数。

new SuperMap.GetFeaturesByGeometryParameters(options)

common/iServer/GetFeaturesByGeometryParameters.js, line 7
Name Type Description
options Object

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

Extends

  • SuperMap.GetFeaturesParametersBase

Members

attributeFilterstring

几何查询属性过滤条件。

fieldsArray.<string>

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

geometryObject

用于查询的几何对象。
点类型可以是:SuperMap.Geometry.Point|L.Point|L.GeoJSON|ol.geom.Point|ol.format.GeoJSON。
线类型可以是:SuperMap.Geometry.LineString|SuperMap.Geometry.LinearRing|L.Polyline|L.GeoJSON|ol.geom.LineString|ol.format.GeoJSON。
面类型可以是:SuperMap.Geometry.Polygon|L.Polygon|L.GeoJSON|ol.geom.Polygon|ol.format.GeoJSON

getFeatureModestring

数据集查询模式。几何查询有"SPATIAL","SPATIAL_ATTRIBUTEFILTER"两种,当用户设置attributeFilter时会自动切换到SPATIAL_ATTRIBUTEFILTER访问服务。

spatialQueryModeSuperMap.SpatialQueryMode

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

Methods

staticSuperMap.GetFeaturesByGeometryParameters.toJsonParameters(params){string}

common/iServer/GetFeaturesByGeometryParameters.js, line 92

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

Name Type Description
params SuperMap.GetFeaturesByGeometryParameters

何查询参数对象。

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

destroy()

common/iServer/GetFeaturesByGeometryParameters.js, line 70

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