# Cluster
Here you will find some uses for Google Maps Clusterers.
# Before everything
Clustering your markers are only possible because of @googlemaps/markerclusterer
! The community is thankful for your effort!
# Cluster your markers
You can add clusters to your GMapMarker
using GMapCluster
component inside of GMapMap
component:
<template>
<GMapMap :center="center" :zoom="7" map-type-id="terrain" style="width: 500px; height: 300px">
<GMapCluster>
<GMapMarker
:key="index"
v-for="(m, index) in markers"
:position="m.position"
:clickable="true"
:draggable="true"
@click="center = m.position"
/>
</GMapCluster>
</GMapMap>
</template>
<script>
export default {
name: 'App',
data() {
return {
center: { lat: 51.093048, lng: 6.84212 },
markers: [
{
position: {
lat: 51.093048,
lng: 6.84212,
},
}, // A long list of clusters
],
}
},
}
</script>
# Props
You can pass the following props to control behavior of clusters:
# minimumClusterSize
Defines the minimum distance of markers to cluster them:
:minimumClusterSize="2"
# styles
Controls style and icon of clusters:
:styles="clusterIcon"
# zoomOnClick
Defines whether clusters should zoom in, when clicked:
:zoomOnClick="true"
← Info window Circle →