We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5c5869 commit c2ffdc1Copy full SHA for c2ffdc1
src/google-maps/map-marker-clusterer/map-marker-clusterer-types.ts
@@ -22,13 +22,12 @@ export interface ClusterOptions {
22
23
export interface Cluster {
24
marker?: Marker;
25
- readonly markers?: Marker[];
+ markers?: Marker[];
26
bounds?: google.maps.LatLngBounds;
27
position: google.maps.LatLng;
28
count: number;
29
push(marker: Marker): void;
30
delete(): void;
31
- new (options: ClusterOptions): Cluster;
32
}
33
34
export declare class MarkerClusterer extends google.maps.OverlayView {
0 commit comments