# 六.WMTS

# 1.瓦片图

  • IGC 数据

查看代码详情
<template>
  <div ref="map" class="map"></div>
</template>

<script>
export default {
  mounted() {
    let {
      tilegrid: { WMTS: WMTSTileGrid },
      Map,
      View,
      layer: { Tile: TileLayer, Vector: VectorLayer },
      source: { WMTS },
      proj: { fromLonLat, get: getProjection },
      extent: { getWidth },
    } = ol;
    const map = new Map({
      target: this.$refs.map,
      view: new View({
        zoom: 5,
        center: fromLonLat([5, 45]),
      }),
    });
    const resolutions = [];
    const matrixIds = [];
    const proj3857 = getProjection("EPSG:3857");
    const maxResolution = getWidth(proj3857.getExtent()) / 256;
    for (let i = 0; i < 20; i++) {
      matrixIds[i] = i.toString();
      resolutions[i] = maxResolution / Math.pow(2, i);
    }
    map.addLayer(
      new TileLayer({
        source: new WMTS({
          url: "https://wxs.ign.fr/choisirgeoportail/geoportail/wmts",
          layer: "GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2",
          matrixSet: "PM",
          format: "image/png",
          projection: "EPSG:3857",
          tileGrid: new WMTSTileGrid({
            origin: [-20037508, 20037508],
            resolutions: resolutions,
            matrixIds: matrixIds,
          }),
          style: "normal",
          attributions:
            '<a href="https://www.ign.fr/" target="_blank">' +
            '<img src="https://wxs.ign.fr/static/logos/IGN/IGN.gif" title="Institut national de l\'' +
            'information géographique et forestière" alt="IGN"></a>',
        }),
      })
    );
  },
};
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

# 2.打印到缩放示例

刷新
全屏/自适应

# 3.光栅重新投影

刷新
全屏/自适应

# 4.WMTS

刷新
全屏/自适应