From e5bcf1bc576f171203a3b660117d658fe1ffcdd0 Mon Sep 17 00:00:00 2001 From: Jeremy Mowery Date: Mon, 15 Jun 2026 15:13:18 -0700 Subject: [PATCH] docs(google-maps): Document the behavior of using the clusterClick output in MapMarkerClusterer Added detailed documentation for clusterClick output. --- .../map-marker-clusterer/map-marker-clusterer.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/google-maps/map-marker-clusterer/map-marker-clusterer.ts b/src/google-maps/map-marker-clusterer/map-marker-clusterer.ts index 73f6cb71e5a3..e217278af7f8 100644 --- a/src/google-maps/map-marker-clusterer/map-marker-clusterer.ts +++ b/src/google-maps/map-marker-clusterer/map-marker-clusterer.ts @@ -82,7 +82,11 @@ export class MapMarkerClusterer implements OnInit, OnChanges, OnDestroy { @Output() readonly clusteringend: Observable = this._closestMapEventManager.getLazyEmitter('clusteringend'); - /** Emits when a cluster has been clicked. */ + /** + * Emits when a cluster has been clicked. + * Listening to this output will replace the default click handler on the cluster, + * disabling the default behavior of zooming into the markers in the cluster. + */ @Output() readonly clusterClick: EventEmitter = new EventEmitter();