# MarkerCluster

# 使用

<amap>
  <amap-marker-cluster
    :data="parkings"
    :marker-options="getMarkerOptions"
    :cluster-options="getClusterOptions"
  />
</amap>
1
2
3
4
5
6
7

Source Code

# Props

属性名 类型 备注
data Array 数据源,格式为
{ lnglat: [number, number], weight?: number }
gridSize number
maxZoom number
averageCenter boolean
clusterByZoomChange boolean 仅支持单次绑定
styles object 指定聚合点标记的样式
markerOptions Function 用于动态获取单个Marker属性的回调函数
clusterOptions Function 用于动态获取聚合Marker属性的回调函数
extraOptions object 其它未在上面列出的属性,仅支持单次绑定

# Methods

方法名 参数 返回 备注

# Slots

Slot 名 位置
marker 可选,自定义单个Marker的内容
cluster 可选,自定义聚合Marker的内容

# Events

事件名 备注
click

# Example

<template>
  <div class="marker-cluster-example">
    <a-form layout="inline">
      <a-form-item label="类型">
        <a-radio-group v-model="type">
          <a-radio-button value="default">默认</a-radio-button>
          <a-radio-button value="styles">
            使用 styles 定义聚合样式
          </a-radio-button>
          <a-radio-button value="custom-cluster">
            使用 cluster 插槽定义聚合样式
          </a-radio-button>
          <a-radio-button value="custom-marker">
            是用 marker 插槽定义单个点样式
          </a-radio-button>
          <a-radio-button value="custom-all">
            完全自定义
          </a-radio-button>
        </a-radio-group>
      </a-form-item>
    </a-form>
    <div class="map-container">
      <amap
        cache-key="marker-cluster-map"
        :center="map.center"
        :zoom="map.zoom"
        map-style="amap://styles/whitesmoke"
      >
        <amap-marker-cluster
          v-if="type === 'default'"
          key="default"
          :data="data"
          :grid-size="options.gridSize"
          :average-center="options.averageCenter"
        />

        <amap-marker-cluster
          v-if="type === 'styles'"
          key="styles"
          :data="data"
          :grid-size="options.gridSize"
          :average-center="options.averageCenter"
          :styles="options.styles"
        />

        <amap-marker-cluster
          v-if="type === 'custom-cluster'"
          key="custom-cluster"
          :data="data"
          :marker-options="getMarkerOptions"
          :cluster-options="getClusterOptions"
          :grid-size="options.gridSize"
          :average-center="options.averageCenter"
        >
          <template v-slot:cluster="context">
            <div :style="getClusterStyle(context)">
              {{ context.count }}
            </div>
          </template>
        </amap-marker-cluster>

        <amap-marker-cluster
          v-if="type === 'custom-marker'"
          key="custom-marker"
          :data="data"
          :marker-options="getMarkerOptions"
          :grid-size="options.gridSize"
          :average-center="options.averageCenter"
        >
          <template v-slot:marker="point">
            <div class="custom-marker" />
          </template>
        </amap-marker-cluster>

        <amap-marker-cluster
          v-if="type === 'custom-all'"
          key="custom-all"
          :data="data"
          :marker-options="getMarkerOptions"
          :cluster-options="getClusterOptions"
          :grid-size="options.gridSize"
          :average-center="options.averageCenter"
        >
          <template v-slot:marker="point">
            <div class="custom-marker" />
          </template>
          <template v-slot:cluster="context">
            <div :style="getClusterStyle(context)">
              {{ context.count }}
            </div>
          </template>
        </amap-marker-cluster>
      </amap>
    </div>
  </div>
</template>

<script>
const data = Object.freeze(
  require('../../public/assets/data/marker-cluster-weighted.json')
);

function interpolate(u, begin, end) {
  if (u < 0) u = 0;
  if (u > 1) u = 1;
  u = Math.pow(u, 1 / 10);
  return u * (end - begin) + begin;
}

export default {
  data() {
    return {
      data,
      map: {
        center: [105, 38],
        zoom: 4,
      },
      type: 'default',
      options: {
        gridSize: 80,
        averageCenter: true,
        styles: Object.freeze([
          {
            url: '/assets/clusters/blue.png',
            size: [32, 32],
            offset: [-16, -16],
          },
          {
            url: '/assets/clusters/green.png',
            size: [32, 32],
            offset: [-16, -16],
          },
          {
            url: '/assets/clusters/orange.png',
            size: [36, 36],
            offset: [-18, -18],
          },
          {
            url: '/assets/clusters/red.png',
            size: [48, 48],
            offset: [-24, -24],
          },
          {
            url: '/assets/clusters/darkRed.png',
            size: [48, 48],
            offset: [-24, -24],
          },
        ]),
      },
    };
  },
  mounted() {
    this.options.styles.forEach(style => {
      style.url = this.$withBase(style.url);
    });
  },
  methods: {
    getMarkerOptions(point) {
      return {
        // position: point.lnglat,
        offset: [-15, -15],
        // content: '<div class="custom-marker" />',
      };
    },
    getClusterOptions(context) {
      const size = Math.round(
        30 + Math.pow(context.count / this.data.length, 1 / 5) * 20
      );
      return {
        offset: [-size / 2, -size / 2],
      };
    },
    getClusterStyle(context) {
      const u = context.count / this.data.length;
      const hue = ~~interpolate(u, 90, 0);
      const size = ~~interpolate(u, 30, 50);
      return {
        backgroundColor: `hsla(${hue}, 100%, 50%, 0.7)`,
        width: `${size}px`,
        height: `${size}px`,
        lineHeight: `${size}px`,
        borderRadius: `${size / 2}px`,
        border: `1px solid hsla(${hue}, 100%, 40%, 1)`,
        boxShadow: `0 0 1px hsla(${hue}, 100%, 50%, 1)`,
        color: `hsla(${hue}, 100%, 20%, 1)`,
        fontSize: '14px',
        textAlign: 'center',
      };
    },
  },
};
</script>

<style lang="less">
.marker-cluster-example {
  .map-container {
    width: 100%;
    height: 500px;
  }
  .custom-marker {
    background-color: hsla(180, 100%, 50%, 0.7);
    height: 24px;
    width: 24px;
    border: 1px solid hsl(180, 100%, 40%);
    border-radius: 12px;
    box-shadow: hsl(180, 100%, 50%) 0px 0px 1px;
    text-align: center;
  }
}
</style>
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210