# 五.Stamen

# 1.瓦片图+矢量图

  • 矢量图绘制时区

查看代码详情
<template>
    <div ref="map" class="map"><div id="info"></div></div>
  </template>
  
  <script>
  export default {
    mounted() {
      let {
        format: { KML },
        Map,
        View,
        layer: { Tile: TileLayer, Vector: VectorLayer },
        source: { Stamen, Vector: VectorSource },
        style: { Fill, Stroke, Style },
      } = ol;
      const map = new Map({
        layers: [
          new TileLayer({
            source: new Stamen({
              layer: "toner",
            }),
          }),
          new VectorLayer({
            source: new VectorSource({
              url: this.$withBase("/data/kml/timezones.kml"),
              format: new KML({
                extractStyles: false,
              }),
            }),
            style: function (feature) {
              let offset = 0;
              const name = feature.get("name");
              const match = name.match(/([\-+]\d{2}):(\d{2})$/);
              if (match) {
                const hours = parseInt(match[1], 10);
                const minutes = parseInt(match[2], 10);
                offset = 60 * hours + minutes;
              }
              const date = new Date();
              const local = new Date(
                date.getTime() + (date.getTimezoneOffset() + offset) * 60000
              );
              let delta = Math.abs(
                12 - local.getHours() + local.getMinutes() / 60
              );
              if (delta > 12) {
                delta = 24 - delta;
              }
              const opacity = 0.75 * (1 - delta / 12);
              return new Style({
                fill: new Fill({
                  color: [0xff, 0xff, 0x33, opacity],
                }),
                stroke: new Stroke({
                  color: "#ffffff",
                }),
              });
            },
          }),
        ],
        target: this.$refs.map,
        view: new View({
          center: [12579156, 3274244],
          zoom: 2,
        }),
      });
      const info = $("#info");
      info.tooltip({
        animation: false,
        trigger: "manual",
      });
      const displayFeatureInfo = function (pixel) {
        info.css({
          left: pixel[0] + "px",
          top: pixel[1] - 15 + "px",
        });
        const feature = map.forEachFeatureAtPixel(pixel, function (feature) {
          return feature;
        });
        if (feature) {
          info.attr("data-original-title", feature.get("name")).tooltip("show");
        } else {
          info.tooltip("hide");
        }
      };
      map.on("pointermove", function (evt) {
        if (evt.dragging) {
          info.tooltip("hide");
          return;
        }
        displayFeatureInfo(map.getEventPixel(evt.originalEvent));
      });
      map.on("click", function (evt) {
        displayFeatureInfo(evt.pixel);
      });
    },
  };
  </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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97