@angular/google-maps 19.0.0-next.5 → 19.0.0-next.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/fesm2022/google-maps.mjs +90 -91
- package/fesm2022/google-maps.mjs.map +1 -1
- package/index.d.ts +17 -18
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference types="google.maps" />
|
|
2
2
|
|
|
3
3
|
import { AfterContentInit } from '@angular/core';
|
|
4
|
-
import { ElementRef } from '@angular/core';
|
|
5
4
|
import { EventEmitter } from '@angular/core';
|
|
6
5
|
import * as i0 from '@angular/core';
|
|
7
6
|
import { NgZone } from '@angular/core';
|
|
@@ -243,7 +242,7 @@ export declare class GoogleMap implements OnChanges, OnInit, OnDestroy {
|
|
|
243
242
|
* https://developers.google.com/maps/documentation/javascript/reference/map#Map.zoom_changed
|
|
244
243
|
*/
|
|
245
244
|
readonly zoomChanged: Observable<void>;
|
|
246
|
-
constructor(
|
|
245
|
+
constructor(...args: unknown[]);
|
|
247
246
|
ngOnChanges(changes: SimpleChanges): void;
|
|
248
247
|
ngOnInit(): void;
|
|
249
248
|
private _initialize;
|
|
@@ -557,7 +556,7 @@ export declare class MapAdvancedMarker implements OnInit, OnChanges, OnDestroy,
|
|
|
557
556
|
* See developers.google.com/maps/documentation/javascript/reference/advanced-markers#AdvancedMarkerElement
|
|
558
557
|
*/
|
|
559
558
|
advancedMarker: google.maps.marker.AdvancedMarkerElement;
|
|
560
|
-
constructor(
|
|
559
|
+
constructor(...args: unknown[]);
|
|
561
560
|
ngOnInit(): void;
|
|
562
561
|
private _initialize;
|
|
563
562
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -580,7 +579,7 @@ export declare interface MapAnchorPoint {
|
|
|
580
579
|
export declare class MapBaseLayer implements OnInit, OnDestroy {
|
|
581
580
|
protected readonly _map: GoogleMap;
|
|
582
581
|
protected readonly _ngZone: NgZone;
|
|
583
|
-
constructor(
|
|
582
|
+
constructor(...args: unknown[]);
|
|
584
583
|
ngOnInit(): void;
|
|
585
584
|
ngOnDestroy(): void;
|
|
586
585
|
private _assertInitialized;
|
|
@@ -703,7 +702,7 @@ export declare class MapCircle implements OnInit, OnDestroy {
|
|
|
703
702
|
readonly circleRightclick: Observable<google.maps.MapMouseEvent>;
|
|
704
703
|
/** Event emitted when the circle is initialized. */
|
|
705
704
|
readonly circleInitialized: EventEmitter<google.maps.Circle>;
|
|
706
|
-
constructor(
|
|
705
|
+
constructor(...args: unknown[]);
|
|
707
706
|
ngOnInit(): void;
|
|
708
707
|
private _initialize;
|
|
709
708
|
ngOnDestroy(): void;
|
|
@@ -777,7 +776,7 @@ export declare class MapDirectionsRenderer implements OnInit, OnChanges, OnDestr
|
|
|
777
776
|
readonly directionsRendererInitialized: EventEmitter<google.maps.DirectionsRenderer>;
|
|
778
777
|
/** The underlying google.maps.DirectionsRenderer object. */
|
|
779
778
|
directionsRenderer?: google.maps.DirectionsRenderer;
|
|
780
|
-
constructor(
|
|
779
|
+
constructor(...args: unknown[]);
|
|
781
780
|
ngOnInit(): void;
|
|
782
781
|
private _initialize;
|
|
783
782
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -817,7 +816,7 @@ export declare interface MapDirectionsResponse {
|
|
|
817
816
|
export declare class MapDirectionsService {
|
|
818
817
|
private readonly _ngZone;
|
|
819
818
|
private _directionsService;
|
|
820
|
-
constructor(
|
|
819
|
+
constructor(...args: unknown[]);
|
|
821
820
|
/**
|
|
822
821
|
* See
|
|
823
822
|
* developers.google.com/maps/documentation/javascript/reference/directions
|
|
@@ -858,7 +857,7 @@ declare type MapEventManagerTarget = {
|
|
|
858
857
|
export declare class MapGeocoder {
|
|
859
858
|
private readonly _ngZone;
|
|
860
859
|
private _geocoder;
|
|
861
|
-
constructor(
|
|
860
|
+
constructor(...args: unknown[]);
|
|
862
861
|
/**
|
|
863
862
|
* See developers.google.com/maps/documentation/javascript/reference/geocoder#Geocoder.geocode
|
|
864
863
|
*/
|
|
@@ -915,7 +914,7 @@ export declare class MapGroundOverlay implements OnInit, OnDestroy {
|
|
|
915
914
|
readonly mapDblclick: Observable<google.maps.MapMouseEvent>;
|
|
916
915
|
/** Event emitted when the ground overlay is initialized. */
|
|
917
916
|
readonly groundOverlayInitialized: EventEmitter<google.maps.GroundOverlay>;
|
|
918
|
-
constructor(
|
|
917
|
+
constructor(...args: unknown[]);
|
|
919
918
|
ngOnInit(): void;
|
|
920
919
|
private _initialize;
|
|
921
920
|
ngOnDestroy(): void;
|
|
@@ -972,7 +971,7 @@ export declare class MapHeatmapLayer implements OnInit, OnChanges, OnDestroy {
|
|
|
972
971
|
heatmap?: google.maps.visualization.HeatmapLayer;
|
|
973
972
|
/** Event emitted when the heatmap is initialized. */
|
|
974
973
|
readonly heatmapInitialized: EventEmitter<google.maps.visualization.HeatmapLayer>;
|
|
975
|
-
constructor(
|
|
974
|
+
constructor(...args: unknown[]);
|
|
976
975
|
ngOnInit(): void;
|
|
977
976
|
private _initialize;
|
|
978
977
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1050,7 +1049,7 @@ export declare class MapInfoWindow implements OnInit, OnDestroy {
|
|
|
1050
1049
|
readonly zindexChanged: Observable<void>;
|
|
1051
1050
|
/** Event emitted when the info window is initialized. */
|
|
1052
1051
|
readonly infoWindowInitialized: EventEmitter<google.maps.InfoWindow>;
|
|
1053
|
-
constructor(
|
|
1052
|
+
constructor(...args: unknown[]);
|
|
1054
1053
|
ngOnInit(): void;
|
|
1055
1054
|
private _initialize;
|
|
1056
1055
|
ngOnDestroy(): void;
|
|
@@ -1129,7 +1128,7 @@ export declare class MapKmlLayer implements OnInit, OnDestroy {
|
|
|
1129
1128
|
readonly statusChanged: Observable<void>;
|
|
1130
1129
|
/** Event emitted when the KML layer is initialized. */
|
|
1131
1130
|
readonly kmlLayerInitialized: EventEmitter<google.maps.KmlLayer>;
|
|
1132
|
-
constructor(
|
|
1131
|
+
constructor(...args: unknown[]);
|
|
1133
1132
|
ngOnInit(): void;
|
|
1134
1133
|
private _initialize;
|
|
1135
1134
|
ngOnDestroy(): void;
|
|
@@ -1326,7 +1325,7 @@ export declare class MapMarker implements OnInit, OnChanges, OnDestroy, MapAncho
|
|
|
1326
1325
|
* See developers.google.com/maps/documentation/javascript/reference/marker#Marker
|
|
1327
1326
|
*/
|
|
1328
1327
|
marker?: google.maps.Marker;
|
|
1329
|
-
constructor(
|
|
1328
|
+
constructor(...args: unknown[]);
|
|
1330
1329
|
ngOnInit(): void;
|
|
1331
1330
|
private _initialize;
|
|
1332
1331
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1475,7 +1474,7 @@ export declare class MapMarkerClusterer implements OnInit, AfterContentInit, OnC
|
|
|
1475
1474
|
markerClusterer?: MarkerClusterer;
|
|
1476
1475
|
/** Event emitted when the clusterer is initialized. */
|
|
1477
1476
|
readonly markerClustererInitialized: EventEmitter<MarkerClusterer>;
|
|
1478
|
-
constructor(
|
|
1477
|
+
constructor(...args: unknown[]);
|
|
1479
1478
|
ngOnInit(): void;
|
|
1480
1479
|
ngAfterContentInit(): void;
|
|
1481
1480
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1574,7 +1573,7 @@ export declare class MapPolygon implements OnInit, OnDestroy {
|
|
|
1574
1573
|
readonly polygonRightclick: Observable<google.maps.PolyMouseEvent>;
|
|
1575
1574
|
/** Event emitted when the polygon is initialized. */
|
|
1576
1575
|
readonly polygonInitialized: EventEmitter<google.maps.Polygon>;
|
|
1577
|
-
constructor(
|
|
1576
|
+
constructor(...args: unknown[]);
|
|
1578
1577
|
ngOnInit(): void;
|
|
1579
1578
|
private _initialize;
|
|
1580
1579
|
ngOnDestroy(): void;
|
|
@@ -1673,7 +1672,7 @@ export declare class MapPolyline implements OnInit, OnDestroy {
|
|
|
1673
1672
|
readonly polylineRightclick: Observable<google.maps.PolyMouseEvent>;
|
|
1674
1673
|
/** Event emitted when the polyline is initialized. */
|
|
1675
1674
|
readonly polylineInitialized: EventEmitter<google.maps.Polyline>;
|
|
1676
|
-
constructor(
|
|
1675
|
+
constructor(...args: unknown[]);
|
|
1677
1676
|
ngOnInit(): void;
|
|
1678
1677
|
private _initialize;
|
|
1679
1678
|
ngOnDestroy(): void;
|
|
@@ -1783,7 +1782,7 @@ export declare class MapRectangle implements OnInit, OnDestroy {
|
|
|
1783
1782
|
readonly rectangleRightclick: Observable<google.maps.MapMouseEvent>;
|
|
1784
1783
|
/** Event emitted when the rectangle is initialized. */
|
|
1785
1784
|
readonly rectangleInitialized: EventEmitter<google.maps.Rectangle>;
|
|
1786
|
-
constructor(
|
|
1785
|
+
constructor(...args: unknown[]);
|
|
1787
1786
|
ngOnInit(): void;
|
|
1788
1787
|
private _initialize;
|
|
1789
1788
|
ngOnDestroy(): void;
|
|
@@ -1837,7 +1836,7 @@ export declare class MapTrafficLayer implements OnInit, OnDestroy {
|
|
|
1837
1836
|
set autoRefresh(autoRefresh: boolean);
|
|
1838
1837
|
/** Event emitted when the traffic layer is initialized. */
|
|
1839
1838
|
readonly trafficLayerInitialized: EventEmitter<google.maps.TrafficLayer>;
|
|
1840
|
-
constructor(
|
|
1839
|
+
constructor(...args: unknown[]);
|
|
1841
1840
|
ngOnInit(): void;
|
|
1842
1841
|
private _initialize;
|
|
1843
1842
|
ngOnDestroy(): void;
|