Skip to content

Commit 8ac5ea0

Browse files
committed
feat(google-maps): generate api report file for google-maps
1 parent 2a798e3 commit 8ac5ea0

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

tools/public_api_guard/google-maps/google-maps.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export class GoogleMap implements OnChanges, OnInit, OnDestroy {
8686
readonly mapDrag: Observable<void>;
8787
readonly mapDragend: Observable<void>;
8888
readonly mapDragstart: Observable<void>;
89+
mapId: string | undefined;
8990
readonly mapInitialized: EventEmitter<google.maps.Map>;
9091
readonly mapMousemove: Observable<google.maps.MapMouseEvent>;
9192
readonly mapMouseout: Observable<google.maps.MapMouseEvent>;
@@ -115,7 +116,7 @@ export class GoogleMap implements OnChanges, OnInit, OnDestroy {
115116
set zoom(zoom: number);
116117
readonly zoomChanged: Observable<void>;
117118
// (undocumented)
118-
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleMap, "google-map", ["googleMap"], { "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "mapTypeId": { "alias": "mapTypeId"; "required": false; }; "center": { "alias": "center"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "mapInitialized": "mapInitialized"; "authFailure": "authFailure"; "boundsChanged": "boundsChanged"; "centerChanged": "centerChanged"; "mapClick": "mapClick"; "mapDblclick": "mapDblclick"; "mapDrag": "mapDrag"; "mapDragend": "mapDragend"; "mapDragstart": "mapDragstart"; "headingChanged": "headingChanged"; "idle": "idle"; "maptypeidChanged": "maptypeidChanged"; "mapMousemove": "mapMousemove"; "mapMouseout": "mapMouseout"; "mapMouseover": "mapMouseover"; "projectionChanged": "projectionChanged"; "mapRightclick": "mapRightclick"; "tilesloaded": "tilesloaded"; "tiltChanged": "tiltChanged"; "zoomChanged": "zoomChanged"; }, never, ["*"], true, never>;
119+
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleMap, "google-map", ["googleMap"], { "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "mapId": { "alias": "mapId"; "required": false; }; "mapTypeId": { "alias": "mapTypeId"; "required": false; }; "center": { "alias": "center"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "mapInitialized": "mapInitialized"; "authFailure": "authFailure"; "boundsChanged": "boundsChanged"; "centerChanged": "centerChanged"; "mapClick": "mapClick"; "mapDblclick": "mapDblclick"; "mapDrag": "mapDrag"; "mapDragend": "mapDragend"; "mapDragstart": "mapDragstart"; "headingChanged": "headingChanged"; "idle": "idle"; "maptypeidChanged": "maptypeidChanged"; "mapMousemove": "mapMousemove"; "mapMouseout": "mapMouseout"; "mapMouseover": "mapMouseover"; "projectionChanged": "projectionChanged"; "mapRightclick": "mapRightclick"; "tilesloaded": "tilesloaded"; "tiltChanged": "tiltChanged"; "zoomChanged": "zoomChanged"; }, never, ["*"], true, never>;
119120
// (undocumented)
120121
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleMap, never>;
121122
}
@@ -127,12 +128,39 @@ export class GoogleMapsModule {
127128
// (undocumented)
128129
static ɵinj: i0.ɵɵInjectorDeclaration<GoogleMapsModule>;
129130
// (undocumented)
130-
static ɵmod: i0.ɵɵNgModuleDeclaration<GoogleMapsModule, never, [typeof i1.GoogleMap, typeof i2.MapBaseLayer, typeof i3.MapBicyclingLayer, typeof i4.MapCircle, typeof i5.MapDirectionsRenderer, typeof i6.MapGroundOverlay, typeof i7.MapHeatmapLayer, typeof i8.MapInfoWindow, typeof i9.MapKmlLayer, typeof i10.MapMarker, typeof i11.MapMarkerClusterer, typeof i12.MapPolygon, typeof i13.MapPolyline, typeof i14.MapRectangle, typeof i15.MapTrafficLayer, typeof i16.MapTransitLayer], [typeof i1.GoogleMap, typeof i2.MapBaseLayer, typeof i3.MapBicyclingLayer, typeof i4.MapCircle, typeof i5.MapDirectionsRenderer, typeof i6.MapGroundOverlay, typeof i7.MapHeatmapLayer, typeof i8.MapInfoWindow, typeof i9.MapKmlLayer, typeof i10.MapMarker, typeof i11.MapMarkerClusterer, typeof i12.MapPolygon, typeof i13.MapPolyline, typeof i14.MapRectangle, typeof i15.MapTrafficLayer, typeof i16.MapTransitLayer]>;
131+
static ɵmod: i0.ɵɵNgModuleDeclaration<GoogleMapsModule, never, [typeof i1.GoogleMap, typeof i2.MapBaseLayer, typeof i3.MapBicyclingLayer, typeof i4.MapCircle, typeof i5.MapDirectionsRenderer, typeof i6.MapGroundOverlay, typeof i7.MapHeatmapLayer, typeof i8.MapInfoWindow, typeof i9.MapKmlLayer, typeof i10.MapMarker, typeof i11.MapAdvancedMarker, typeof i12.MapMarkerClusterer, typeof i13.MapPolygon, typeof i14.MapPolyline, typeof i15.MapRectangle, typeof i16.MapTrafficLayer, typeof i17.MapTransitLayer], [typeof i1.GoogleMap, typeof i2.MapBaseLayer, typeof i3.MapBicyclingLayer, typeof i4.MapCircle, typeof i5.MapDirectionsRenderer, typeof i6.MapGroundOverlay, typeof i7.MapHeatmapLayer, typeof i8.MapInfoWindow, typeof i9.MapKmlLayer, typeof i10.MapMarker, typeof i11.MapAdvancedMarker, typeof i12.MapMarkerClusterer, typeof i13.MapPolygon, typeof i14.MapPolyline, typeof i15.MapRectangle, typeof i16.MapTrafficLayer, typeof i17.MapTransitLayer]>;
131132
}
132133

133134
// @public
134135
export type HeatmapData = google.maps.MVCArray<google.maps.LatLng | google.maps.visualization.WeightedLocation | google.maps.LatLngLiteral> | (google.maps.LatLng | google.maps.visualization.WeightedLocation | google.maps.LatLngLiteral)[];
135136

137+
// @public
138+
export class MapAdvancedMarker implements OnInit, OnChanges, OnDestroy {
139+
constructor(_googleMap: GoogleMap, _ngZone: NgZone);
140+
advancedMarker: google.maps.marker.AdvancedMarkerElement;
141+
set content(content: Node | google.maps.marker.PinElement);
142+
set gmpDraggable(draggable: boolean);
143+
readonly mapClick: Observable<google.maps.MapMouseEvent>;
144+
readonly mapDrag: Observable<google.maps.MapMouseEvent>;
145+
readonly mapDragend: Observable<google.maps.MapMouseEvent>;
146+
readonly mapDragstart: Observable<google.maps.MapMouseEvent>;
147+
readonly markerInitialized: EventEmitter<google.maps.marker.AdvancedMarkerElement>;
148+
// (undocumented)
149+
ngOnChanges(changes: SimpleChanges): void;
150+
// (undocumented)
151+
ngOnDestroy(): void;
152+
// (undocumented)
153+
ngOnInit(): void;
154+
set options(options: google.maps.marker.AdvancedMarkerElementOptions);
155+
set position(position: google.maps.LatLngLiteral | google.maps.LatLng | google.maps.LatLngAltitude | google.maps.LatLngAltitudeLiteral);
156+
set title(title: string);
157+
set zIndex(zIndex: number);
158+
// (undocumented)
159+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapAdvancedMarker, "map-advanced-marker", ["mapAdvancedMarker"], { "title": { "alias": "title"; "required": false; }; "position": { "alias": "position"; "required": false; }; "content": { "alias": "content"; "required": false; }; "gmpDraggable": { "alias": "gmpDraggable"; "required": false; }; "options": { "alias": "options"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; }, { "mapClick": "mapClick"; "mapDrag": "mapDrag"; "mapDragend": "mapDragend"; "mapDragstart": "mapDragstart"; "markerInitialized": "markerInitialized"; }, never, never, true, never>;
160+
// (undocumented)
161+
static ɵfac: i0.ɵɵFactoryDeclaration<MapAdvancedMarker, never>;
162+
}
163+
136164
// @public
137165
export interface MapAnchorPoint {
138166
// (undocumented)
@@ -364,6 +392,7 @@ export class MapInfoWindow implements OnInit, OnDestroy {
364392
// (undocumented)
365393
ngOnInit(): void;
366394
open(anchor?: MapAnchorPoint, shouldFocus?: boolean): void;
395+
openAdvancedMarkerElement(advancedMarkerElement: google.maps.marker.AdvancedMarkerElement, content?: string | Element | Text): void;
367396
// (undocumented)
368397
set options(options: google.maps.InfoWindowOptions);
369398
// (undocumented)

0 commit comments

Comments
 (0)