diff --git a/src/MarkerClusterGroup.js b/src/MarkerClusterGroup.js index cc8efdda0b..c1d5eef991 100644 --- a/src/MarkerClusterGroup.js +++ b/src/MarkerClusterGroup.js @@ -599,6 +599,11 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({ } else if (this.options.zoomToBoundsOnClick) { e.layer.zoomToBounds(); } + + // Focus the map again for keyboard users. + if (e.originalEvent.keyCode === 13) { + map._container.focus(); + } }, _showCoverage: function (e) {