VWfsSource
VWfsSource
:Web Feature Service (WFS) 数据源,用于请求和获取基于地理要素的数据。WFS 提供了对地理要素数据的直接访问和操作能力。
基础用法
使用 WFS 源加载要素数据,并通过图层展示:
Api
wfsSourceProps
属性名 | 说明 | 类型 | 默认值 |
---|---|---|---|
继承属性 | geoSourceProps | - | - |
url | 服务地址 | string | 必填 |
typeNames | 要素类型名称 | string | 必填 |
version | 服务版本 | string | 2.0.0 |
count | 返回要素数量限制 | number | - |
bbox | 地图范围边界框(minx,miny,maxx,maxy) | string | - |
propertyName | 查询属性名称列表(逗号分隔) | string | - |
sortBy | 结果排序字段 | string | - |
srsName | 空间参考系统 | string | EPSG:4326 |
featureId | 要素ID | string | - |
outputFormat | 输出格式 | string | application/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>
}