@angular/google-maps 22.0.0-next.3 → 22.0.0-next.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/google-maps",
3
- "version": "22.0.0-next.3",
3
+ "version": "22.0.0-next.4",
4
4
  "description": "Angular Google Maps",
5
5
  "repository": {
6
6
  "type": "git",
@@ -139,7 +139,7 @@ declare class GoogleMap implements OnChanges, OnInit, OnDestroy {
139
139
  * https://developers.google.com/maps/documentation/javascript/reference/map#Map.zoom_changed
140
140
  */
141
141
  readonly zoomChanged: Observable<void>;
142
- constructor(...args: unknown[]);
142
+ constructor();
143
143
  ngOnChanges(changes: SimpleChanges<this>): void;
144
144
  ngOnInit(): void;
145
145
  private _initialize;
@@ -243,7 +243,6 @@ declare class GoogleMap implements OnChanges, OnInit, OnDestroy {
243
243
  declare class MapBaseLayer implements OnInit, OnDestroy {
244
244
  protected readonly _map: GoogleMap;
245
245
  protected readonly _ngZone: NgZone;
246
- constructor(...args: unknown[]);
247
246
  ngOnInit(): void;
248
247
  ngOnDestroy(): void;
249
248
  private _assertInitialized;
@@ -366,7 +365,6 @@ declare class MapCircle implements OnInit, OnDestroy {
366
365
  readonly circleRightclick: Observable<google.maps.MapMouseEvent>;
367
366
  /** Event emitted when the circle is initialized. */
368
367
  readonly circleInitialized: EventEmitter<google.maps.Circle>;
369
- constructor(...args: unknown[]);
370
368
  ngOnInit(): void;
371
369
  private _initialize;
372
370
  ngOnDestroy(): void;
@@ -440,7 +438,6 @@ declare class MapDirectionsRenderer implements OnInit, OnChanges, OnDestroy {
440
438
  readonly directionsRendererInitialized: EventEmitter<google.maps.DirectionsRenderer>;
441
439
  /** The underlying google.maps.DirectionsRenderer object. */
442
440
  directionsRenderer?: google.maps.DirectionsRenderer;
443
- constructor(...args: unknown[]);
444
441
  ngOnInit(): void;
445
442
  private _initialize;
446
443
  ngOnChanges(changes: SimpleChanges<this>): void;
@@ -508,7 +505,6 @@ declare class MapGroundOverlay implements OnInit, OnDestroy {
508
505
  readonly mapDblclick: Observable<google.maps.MapMouseEvent>;
509
506
  /** Event emitted when the ground overlay is initialized. */
510
507
  readonly groundOverlayInitialized: EventEmitter<google.maps.GroundOverlay>;
511
- constructor(...args: unknown[]);
512
508
  ngOnInit(): void;
513
509
  private _initialize;
514
510
  ngOnDestroy(): void;
@@ -567,7 +563,6 @@ declare class MapHeatmapLayer implements OnInit, OnChanges, OnDestroy {
567
563
  heatmap?: google.maps.visualization.HeatmapLayer;
568
564
  /** Event emitted when the heatmap is initialized. */
569
565
  readonly heatmapInitialized: EventEmitter<google.maps.visualization.HeatmapLayer>;
570
- constructor(...args: unknown[]);
571
566
  ngOnInit(): void;
572
567
  private _initialize;
573
568
  ngOnChanges(changes: SimpleChanges<this>): void;
@@ -649,7 +644,6 @@ declare class MapInfoWindow implements OnInit, OnDestroy {
649
644
  readonly zindexChanged: Observable<void>;
650
645
  /** Event emitted when the info window is initialized. */
651
646
  readonly infoWindowInitialized: EventEmitter<google.maps.InfoWindow>;
652
- constructor(...args: unknown[]);
653
647
  ngOnInit(): void;
654
648
  private _initialize;
655
649
  ngOnDestroy(): void;
@@ -728,7 +722,6 @@ declare class MapKmlLayer implements OnInit, OnDestroy {
728
722
  readonly statusChanged: Observable<void>;
729
723
  /** Event emitted when the KML layer is initialized. */
730
724
  readonly kmlLayerInitialized: EventEmitter<google.maps.KmlLayer>;
731
- constructor(...args: unknown[]);
732
725
  ngOnInit(): void;
733
726
  private _initialize;
734
727
  ngOnDestroy(): void;
@@ -932,7 +925,6 @@ declare class MapMarker implements OnInit, OnChanges, OnDestroy, MapAnchorPoint,
932
925
  * See developers.google.com/maps/documentation/javascript/reference/marker#Marker
933
926
  */
934
927
  marker?: google.maps.Marker;
935
- constructor(...args: unknown[]);
936
928
  ngOnInit(): void;
937
929
  private _initialize;
938
930
  ngOnChanges(changes: SimpleChanges<this>): void;
@@ -1104,7 +1096,6 @@ declare class MapAdvancedMarker implements OnInit, OnChanges, OnDestroy, MapAnch
1104
1096
  * See developers.google.com/maps/documentation/javascript/reference/advanced-markers#AdvancedMarkerElement
1105
1097
  */
1106
1098
  advancedMarker: google.maps.marker.AdvancedMarkerElement;
1107
- constructor(...args: unknown[]);
1108
1099
  ngOnInit(): void;
1109
1100
  private _initialize;
1110
1101
  ngOnChanges(changes: SimpleChanges<this>): void;
@@ -1358,7 +1349,6 @@ declare class DeprecatedMapMarkerClusterer implements OnInit, AfterContentInit,
1358
1349
  markerClusterer?: MarkerClusterer$1;
1359
1350
  /** Event emitted when the clusterer is initialized. */
1360
1351
  readonly markerClustererInitialized: EventEmitter<MarkerClusterer$1>;
1361
- constructor(...args: unknown[]);
1362
1352
  ngOnInit(): void;
1363
1353
  ngAfterContentInit(): void;
1364
1354
  ngOnChanges(changes: SimpleChanges<this>): void;
@@ -1457,7 +1447,6 @@ declare class MapPolygon implements OnInit, OnDestroy {
1457
1447
  readonly polygonRightclick: Observable<google.maps.PolyMouseEvent>;
1458
1448
  /** Event emitted when the polygon is initialized. */
1459
1449
  readonly polygonInitialized: EventEmitter<google.maps.Polygon>;
1460
- constructor(...args: unknown[]);
1461
1450
  ngOnInit(): void;
1462
1451
  private _initialize;
1463
1452
  ngOnDestroy(): void;
@@ -1556,7 +1545,6 @@ declare class MapPolyline implements OnInit, OnDestroy {
1556
1545
  readonly polylineRightclick: Observable<google.maps.PolyMouseEvent>;
1557
1546
  /** Event emitted when the polyline is initialized. */
1558
1547
  readonly polylineInitialized: EventEmitter<google.maps.Polyline>;
1559
- constructor(...args: unknown[]);
1560
1548
  ngOnInit(): void;
1561
1549
  private _initialize;
1562
1550
  ngOnDestroy(): void;
@@ -1666,7 +1654,6 @@ declare class MapRectangle implements OnInit, OnDestroy {
1666
1654
  readonly rectangleRightclick: Observable<google.maps.MapMouseEvent>;
1667
1655
  /** Event emitted when the rectangle is initialized. */
1668
1656
  readonly rectangleInitialized: EventEmitter<google.maps.Rectangle>;
1669
- constructor(...args: unknown[]);
1670
1657
  ngOnInit(): void;
1671
1658
  private _initialize;
1672
1659
  ngOnDestroy(): void;
@@ -1720,7 +1707,6 @@ declare class MapTrafficLayer implements OnInit, OnDestroy {
1720
1707
  set autoRefresh(autoRefresh: boolean);
1721
1708
  /** Event emitted when the traffic layer is initialized. */
1722
1709
  readonly trafficLayerInitialized: EventEmitter<google.maps.TrafficLayer>;
1723
- constructor(...args: unknown[]);
1724
1710
  ngOnInit(): void;
1725
1711
  private _initialize;
1726
1712
  ngOnDestroy(): void;
@@ -1946,7 +1932,6 @@ interface MapDirectionsResponse {
1946
1932
  declare class MapDirectionsService {
1947
1933
  private readonly _ngZone;
1948
1934
  private _directionsService;
1949
- constructor(...args: unknown[]);
1950
1935
  /**
1951
1936
  * See
1952
1937
  * developers.google.com/maps/documentation/javascript/reference/directions
@@ -1969,7 +1954,6 @@ interface MapGeocoderResponse {
1969
1954
  declare class MapGeocoder {
1970
1955
  private readonly _ngZone;
1971
1956
  private _geocoder;
1972
- constructor(...args: unknown[]);
1973
1957
  /**
1974
1958
  * See developers.google.com/maps/documentation/javascript/reference/geocoder#Geocoder.geocode
1975
1959
  */