@angular/google-maps 21.1.4 → 21.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/google-maps.d.ts +1 -2
package/package.json
CHANGED
package/types/google-maps.d.ts
CHANGED
|
@@ -1761,13 +1761,12 @@ interface ClusterOptions {
|
|
|
1761
1761
|
}
|
|
1762
1762
|
interface Cluster {
|
|
1763
1763
|
marker?: Marker;
|
|
1764
|
-
|
|
1764
|
+
markers?: Marker[];
|
|
1765
1765
|
bounds?: google.maps.LatLngBounds;
|
|
1766
1766
|
position: google.maps.LatLng;
|
|
1767
1767
|
count: number;
|
|
1768
1768
|
push(marker: Marker): void;
|
|
1769
1769
|
delete(): void;
|
|
1770
|
-
new (options: ClusterOptions): Cluster;
|
|
1771
1770
|
}
|
|
1772
1771
|
declare class MarkerClusterer extends google.maps.OverlayView {
|
|
1773
1772
|
onClusterClick: onClusterClickHandler;
|