Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/google-maps/map-marker-clusterer/map-marker-clusterer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ export class MapMarkerClusterer implements OnInit, OnChanges, OnDestroy {
@Output() readonly clusteringend: Observable<void> =
this._closestMapEventManager.getLazyEmitter<void>('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<Cluster> = new EventEmitter<Cluster>();

Expand Down
Loading