diff --git a/_templates/events.html b/_templates/events.html
index 62a54444..698e8f0a 100644
--- a/_templates/events.html
+++ b/_templates/events.html
@@ -21,7 +21,7 @@ L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 18
}).addTo(map);
-var markers = new L.MarkerClusterGroup({showCoverageOnHover: false, maxClusterRadius: 20});
+var markers = new L.MarkerClusterGroup({showCoverageOnHover: false, maxClusterRadius: 40});
{% filter_for p in site.conferences sort_by:date %}{% if p.geoloc != 'false' %}
L.marker([{{ p.geoloc }}]).bindPopup('{{ p.title | htmlescape }}
{{ p.date }}
{{ p.venue | htmlescape }}
{{ p.address | htmlescape }}
{{ p.city | htmlescape }}, {{ p.country | htmlescape }}').addTo(markers);
{% endif %}{% endfilter_for %}