Skip to content

VWmsSource

VWmsSource:Web Map Service (WMS) 数据源,用于请求和获取地图图像。WMS 提供了基于 HTTP 的标准地图服务接口,支持动态生成和显示地图图像。

基础用法

使用 WMS 源加载栅格图层:

Api

wmsSourceProps

属性名说明类型默认值
继承属性rasterSourceProps--
url服务地址string必填
layers图层名称(逗号分隔)string必填
version服务版本string1.3.0
styles图层样式列表(逗号分隔)stringdefault
crs空间参考系统(WMS 1.3.0)stringEPSG:3857
bbox地图范围边界框(minx,miny,maxx,maxy)string{bbox-epsg-3857}
width地图输出宽度(像素)number256
height地图输出高度(像素)number256
format地图输出格式stringimage/png
transparent地图背景是否透明booleantrue
bgcolor地图背景色(RRGGBB)string-
exceptions异常报告格式stringapplication/vnd.ogc.se_xml
time地图数据的时间值或范围string-
sldStyledLayerDescriptor XML文件URLstring-
sld_bodyURL编码的SLD XML文档string-
customParams自定义参数object-
defaultOptions配置选项(覆盖同名属性object-

wmsSourceEmits

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

类型定义

WmsSourceSpecification

typescript
interface WmsSourceSpecification {
  service?: 'WMS'
  request?: 'GetCapabilities' | 'GetMap' | 'GetFeatureInfo'
  version?: string
  url?: string
  layers?: string
  styles?: string
  crs?: string
  srs?: string
  bbox?: string
  width?: number
  height?: number
  format?: string
  transparent?: string | boolean
  bgcolor?: string
  exceptions?: string
  time?: string
  sld?: string
  sld_body?: string
  customParams?: Record<string, any>
}

基于 MIT 许可发布