VRasterSource
VRasterSource
:包含栅格图块的源。
基础用法
添加 WMTS 服务
Api
rasterSourceProps
属性名 | 说明 | 类型 | 默认值 |
---|---|---|---|
url | 瓦片服务的URL | string | - |
tiles | 瓦片源的数组 | array | - |
tileSize | 瓦片大小 | number | 256 |
scheme | 坐标参考系统 | 'xyz' | 'tms' | xyz |
bounds | 源的边界框 | array | - |
minzoom | 最小缩放级别 | number | 0 |
maxzoom | 最大缩放级别 | number | 22 |
attribution | 源的名称 | string | - |
volatile | 是否缓存瓦片 | boolean | false |
defaultOptions | 默认配置项(覆盖同名属性) | object | - |
rasterSourceEmits
事件名 | 说明 | 回调参数 |
---|---|---|
load | 源加载完成后触发 | Function |
类型定义
RasterSourceLoadEvent
typescript
export interface RasterSourceLoadEvent {
source: RasterTileSource
map: Map
}
RasterExcludeProps
typescript
export type RasterExcludeProps = OmitByKey<RasterSourceSpecification, 'tiles' | 'type'>