Skip to content

VWfsSource

VWfsSource:Web Feature Service (WFS) 数据源,用于请求和获取基于地理要素的数据。WFS 提供了对地理要素数据的直接访问和操作能力。

基础用法

使用 WFS 源加载要素数据,并通过图层展示:

Api

wfsSourceProps

属性名说明类型默认值
继承属性geoSourceProps--
url服务地址string必填
typeNames要素类型名称string必填
version服务版本string2.0.0
count返回要素数量限制number-
bbox地图范围边界框(minx,miny,maxx,maxy)string-
propertyName查询属性名称列表(逗号分隔)string-
sortBy结果排序字段string-
srsName空间参考系统stringEPSG:4326
featureId要素IDstring-
outputFormat输出格式stringapplication/json
storedQuery_id存储查询ID(WFS 2.0.0 特有)string-
wfsFilter过滤条件string-
startIndex起始索引number-
customParams自定义参数object-
defaultOptions配置选项(覆盖同名属性object-

wfsSourceEmits

事件名说明回调参数
继承事件geoSourceEmits-

类型定义

WfsRequestType

typescript
type WfsRequestType = 'GetCapabilities' | 'DescribeFeatureType' | 'GetFeature' | 'GetPropertyValue' | 'ListStoredQueries' | 'DescribeStoredQueries'

WfsSourceSpecification

typescript
interface WfsSourceSpecification {
  service?: 'WFS'
  version?: string
  request?: WfsRequestType
  url?: string
  typeNames?: string
  count?: number
  startIndex?: number
  bbox?: string
  propertyName?: string
  sortBy?: string
  srsName?: string
  featureId?: string
  outputFormat?: string
  storedQuery_id?: string
  wfsFilter?: string
  customParams?: Record<string, any>
}

基于 MIT 许可发布