Skip to content

VRasterSource

VRasterSource :包含栅格图块的源。

基础用法

添加 WMTS 服务

Api

rasterSourceProps

属性名说明类型默认值
url瓦片服务的URLstring-
tiles瓦片源的数组array-
tileSize瓦片大小number256
scheme坐标参考系统'xyz' | 'tms'xyz
bounds源的边界框array-
minzoom最小缩放级别number0
maxzoom最大缩放级别number22
attribution源的名称string-
volatile是否缓存瓦片booleanfalse
defaultOptions默认配置项(覆盖同名属性object-

rasterSourceEmits

事件名说明回调参数
load源加载完成后触发Function

类型定义

RasterSourceLoadEvent

sources/RasterSource/RasterSource.ts
typescript
export interface RasterSourceLoadEvent {
  source: RasterTileSource
  map: Map
}

RasterExcludeProps

typescript
export type RasterExcludeProps = OmitByKey<RasterSourceSpecification, 'tiles' | 'type'>

基于 MIT 许可发布