---
title: "MapboxWmtsLayer"
description: "Add an OGC WMTS (KVP GetTile) service as a raster layer, with subdomain expansion and custom auth parameters."
canonical_url: "https://mapbox.mhaibaraai.cn/en/docs/extensions/wmts"
---
# MapboxWmtsLayer

> Add an OGC WMTS (KVP GetTile) service as a raster layer, with subdomain expansion and custom auth parameters.

## Introduction

`MapboxWmtsLayer` integrates a standard WMTS (KVP GetTile) service as a raster layer: `url` and `layer` are required; `tileMatrixSet` / `style` / `format` are forwarded as-is; when `url` contains `{s}`, `subdomains` is used to expand multi-host URLs; `params` appends auth parameters (e.g. `tk`). [MapboxTiandituLayer](https://mapbox.mhaibaraai.cn/docs/extensions/tianditu) is built on top of this component.

## Usage

Demonstrating WMTS integration using Tianditu imagery (`tk` is read from runtime config):

```vue [WmtsLayerExample.vue]
<script setup lang="ts">
// 以天地图影像为例演示通用 WMTS（KVP）接入；tk 取自运行时配置，不硬编码
const tk = (useRuntimeConfig().public.mapbox as { tiandituToken?: string }).tiandituToken
const subdomains = ['0', '1', '2', '3', '4', '5', '6', '7']
</script>

<template>
  <div class="h-115 w-full overflow-hidden rounded-(--ui-radius) border border-default">
    <MapboxMap :options="{ style: 'mapbox://styles/mapbox/light-v11', center: [116.397, 39.908], zoom: 10 }">
      <MapboxWmtsLayer
        url="https://t{s}.tianditu.gov.cn/img_w/wmts"
        layer="img"
        :subdomains="subdomains"
        :params="{ tk }"
        attribution="© 天地图"
      />
    </MapboxMap>
  </div>
</template>
```

## API

### Props

```ts
/**
 * Props for the MapboxWmtsLayer component
 */
interface MapboxWmtsLayerProps {
  /**
   * WMTS 服务基础地址；含 {s} 时配合 subdomains 展开
   */
  url: string;
  /**
   * 图层标识 LAYER
   */
  layer: string;
  /**
   * source/layer id
   */
  layerId?: string | undefined;
  /**
   * 瓦片矩阵集
   */
  tileMatrixSet?: string | undefined;
  /**
   * 瓦片格式
   */
  format?: string | undefined;
  /**
   * 子域名列表，替换 url 中的 {s}
   */
  subdomains?: string[] | undefined;
  /**
   * 瓦片尺寸
   */
  tileSize?: number | undefined;
  /**
   * 版权信息
   */
  attribution?: string | undefined;
  /**
   * 透传查询参数（如 { tk }）
   */
  params?: Record<string, string | undefined> | undefined;
  /**
   * 插入到该图层之前
   */
  beforeId?: string | undefined;
}
```

## Changelog

See commit history for [src/runtime/components/extensions/WmtsLayer.vue](https://github.com/mhaibaraai/movk-mapbox/commits/main/src/runtime/components/extensions/WmtsLayer.vue).


## Sitemap

See the full [sitemap](https://mapbox.mhaibaraai.cn/sitemap.md) for all pages.
