We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01c663a commit e762c84Copy full SHA for e762c84
umap/static/umap/js/modules/rendering/layers/cluster.js
@@ -55,7 +55,7 @@ const MarkerCluster = Marker.extend({
55
const zoom = this._map.getZoom()
56
const angle = (index * step * Math.PI) / 180
57
const progress = index / this._layers.length
58
- const radius = maxRadius * (1 - progress) ** 1
+ const radius = maxRadius * (1 - progress) ** 0.4
59
const x = radius * Math.cos(angle)
60
const y = radius * Math.sin(angle)
61
const point = this._map.project([center.lat, center.lng], zoom)
0 commit comments