@angular/google-maps 14.0.0-next.1 → 14.0.0-next.12
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/esm2020/google-map/google-map.mjs +4 -4
- package/esm2020/google-maps-module.mjs +5 -5
- package/esm2020/map-base-layer.mjs +4 -4
- package/esm2020/map-bicycling-layer/map-bicycling-layer.mjs +4 -4
- package/esm2020/map-circle/map-circle.mjs +4 -4
- package/esm2020/map-directions-renderer/map-directions-renderer.mjs +4 -4
- package/esm2020/map-directions-renderer/map-directions-service.mjs +4 -4
- package/esm2020/map-geocoder/map-geocoder.mjs +4 -4
- package/esm2020/map-ground-overlay/map-ground-overlay.mjs +4 -4
- package/esm2020/map-heatmap-layer/map-heatmap-layer.mjs +4 -4
- package/esm2020/map-info-window/map-info-window.mjs +4 -4
- package/esm2020/map-kml-layer/map-kml-layer.mjs +4 -4
- package/esm2020/map-marker/map-marker.mjs +4 -4
- package/esm2020/map-marker-clusterer/map-marker-clusterer.mjs +4 -4
- package/esm2020/map-polygon/map-polygon.mjs +4 -4
- package/esm2020/map-polyline/map-polyline.mjs +4 -4
- package/esm2020/map-rectangle/map-rectangle.mjs +4 -4
- package/esm2020/map-traffic-layer/map-traffic-layer.mjs +4 -4
- package/esm2020/map-transit-layer/map-transit-layer.mjs +4 -4
- package/fesm2015/google-maps.mjs +58 -58
- package/fesm2015/google-maps.mjs.map +1 -1
- package/fesm2020/google-maps.mjs +58 -58
- package/fesm2020/google-maps.mjs.map +1 -1
- package/google-map/google-map.d.ts +1 -1
- package/map-base-layer.d.ts +1 -1
- package/map-bicycling-layer/map-bicycling-layer.d.ts +1 -1
- package/map-circle/map-circle.d.ts +1 -1
- package/map-directions-renderer/map-directions-renderer.d.ts +1 -1
- package/map-ground-overlay/map-ground-overlay.d.ts +1 -1
- package/map-heatmap-layer/map-heatmap-layer.d.ts +1 -1
- package/map-info-window/map-info-window.d.ts +1 -1
- package/map-kml-layer/map-kml-layer.d.ts +1 -1
- package/map-marker/map-marker.d.ts +1 -1
- package/map-marker-clusterer/map-marker-clusterer.d.ts +1 -1
- package/map-polygon/map-polygon.d.ts +1 -1
- package/map-polyline/map-polyline.d.ts +1 -1
- package/map-rectangle/map-rectangle.d.ts +1 -1
- package/map-traffic-layer/map-traffic-layer.d.ts +1 -1
- package/map-transit-layer/map-transit-layer.d.ts +1 -1
- package/package.json +3 -3
|
@@ -241,5 +241,5 @@ export declare class GoogleMap implements OnChanges, OnInit, OnDestroy {
|
|
|
241
241
|
/** Asserts that the map has been initialized. */
|
|
242
242
|
private _assertInitialized;
|
|
243
243
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleMap, never>;
|
|
244
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleMap, "google-map", ["googleMap"], { "height": "height"; "width": "width"; "mapTypeId": "mapTypeId"; "center": "center"; "zoom": "zoom"; "options": "options"; }, { "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, ["*"]>;
|
|
244
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleMap, "google-map", ["googleMap"], { "height": "height"; "width": "width"; "mapTypeId": "mapTypeId"; "center": "center"; "zoom": "zoom"; "options": "options"; }, { "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, ["*"], false>;
|
|
245
245
|
}
|
package/map-base-layer.d.ts
CHANGED
|
@@ -19,5 +19,5 @@ export declare class MapBaseLayer implements OnInit, OnDestroy {
|
|
|
19
19
|
protected _setMap(): void;
|
|
20
20
|
protected _unsetMap(): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapBaseLayer, never>;
|
|
22
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapBaseLayer, "map-base-layer", ["mapBaseLayer"], {}, {}, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapBaseLayer, "map-base-layer", ["mapBaseLayer"], {}, {}, never, never, false>;
|
|
23
23
|
}
|
|
@@ -18,5 +18,5 @@ export declare class MapBicyclingLayer extends MapBaseLayer {
|
|
|
18
18
|
protected _unsetMap(): void;
|
|
19
19
|
private _assertLayerInitialized;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapBicyclingLayer, never>;
|
|
21
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapBicyclingLayer, "map-bicycling-layer", ["mapBicyclingLayer"], {}, {}, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapBicyclingLayer, "map-bicycling-layer", ["mapBicyclingLayer"], {}, {}, never, never, false>;
|
|
22
22
|
}
|
|
@@ -135,5 +135,5 @@ export declare class MapCircle implements OnInit, OnDestroy {
|
|
|
135
135
|
private _watchForRadiusChanges;
|
|
136
136
|
private _assertInitialized;
|
|
137
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapCircle, never>;
|
|
138
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapCircle, "map-circle", ["mapCircle"], { "options": "options"; "center": "center"; "radius": "radius"; }, { "centerChanged": "centerChanged"; "circleClick": "circleClick"; "circleDblclick": "circleDblclick"; "circleDrag": "circleDrag"; "circleDragend": "circleDragend"; "circleDragstart": "circleDragstart"; "circleMousedown": "circleMousedown"; "circleMousemove": "circleMousemove"; "circleMouseout": "circleMouseout"; "circleMouseover": "circleMouseover"; "circleMouseup": "circleMouseup"; "radiusChanged": "radiusChanged"; "circleRightclick": "circleRightclick"; }, never>;
|
|
138
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapCircle, "map-circle", ["mapCircle"], { "options": "options"; "center": "center"; "radius": "radius"; }, { "centerChanged": "centerChanged"; "circleClick": "circleClick"; "circleDblclick": "circleDblclick"; "circleDrag": "circleDrag"; "circleDragend": "circleDragend"; "circleDragstart": "circleDragstart"; "circleMousedown": "circleMousedown"; "circleMousemove": "circleMousemove"; "circleMouseout": "circleMouseout"; "circleMouseover": "circleMouseover"; "circleMouseup": "circleMouseup"; "radiusChanged": "radiusChanged"; "circleRightclick": "circleRightclick"; }, never, never, false>;
|
|
139
139
|
}
|
|
@@ -61,5 +61,5 @@ export declare class MapDirectionsRenderer implements OnInit, OnChanges, OnDestr
|
|
|
61
61
|
private _combineOptions;
|
|
62
62
|
private _assertInitialized;
|
|
63
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapDirectionsRenderer, never>;
|
|
64
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapDirectionsRenderer, "map-directions-renderer", ["mapDirectionsRenderer"], { "directions": "directions"; "options": "options"; }, { "directionsChanged": "directionsChanged"; }, never>;
|
|
64
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapDirectionsRenderer, "map-directions-renderer", ["mapDirectionsRenderer"], { "directions": "directions"; "options": "options"; }, { "directionsChanged": "directionsChanged"; }, never, never, false>;
|
|
65
65
|
}
|
|
@@ -74,5 +74,5 @@ export declare class MapGroundOverlay implements OnInit, OnDestroy {
|
|
|
74
74
|
private _watchForUrlChanges;
|
|
75
75
|
private _assertInitialized;
|
|
76
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapGroundOverlay, never>;
|
|
77
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapGroundOverlay, "map-ground-overlay", ["mapGroundOverlay"], { "url": "url"; "bounds": "bounds"; "clickable": "clickable"; "opacity": "opacity"; }, { "mapClick": "mapClick"; "mapDblclick": "mapDblclick"; }, never>;
|
|
77
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapGroundOverlay, "map-ground-overlay", ["mapGroundOverlay"], { "url": "url"; "bounds": "bounds"; "clickable": "clickable"; "opacity": "opacity"; }, { "mapClick": "mapClick"; "mapDblclick": "mapDblclick"; }, never, never, false>;
|
|
78
78
|
}
|
|
@@ -60,5 +60,5 @@ export declare class MapHeatmapLayer implements OnInit, OnChanges, OnDestroy {
|
|
|
60
60
|
/** Asserts that the heatmap object has been initialized. */
|
|
61
61
|
private _assertInitialized;
|
|
62
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapHeatmapLayer, never>;
|
|
63
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapHeatmapLayer, "map-heatmap-layer", ["mapHeatmapLayer"], { "data": "data"; "options": "options"; }, {}, never>;
|
|
63
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapHeatmapLayer, "map-heatmap-layer", ["mapHeatmapLayer"], { "data": "data"; "options": "options"; }, {}, never, never, false>;
|
|
64
64
|
}
|
|
@@ -93,5 +93,5 @@ export declare class MapInfoWindow implements OnInit, OnDestroy {
|
|
|
93
93
|
private _watchForPositionChanges;
|
|
94
94
|
private _assertInitialized;
|
|
95
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapInfoWindow, never>;
|
|
96
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapInfoWindow, "map-info-window", ["mapInfoWindow"], { "options": "options"; "position": "position"; }, { "closeclick": "closeclick"; "contentChanged": "contentChanged"; "domready": "domready"; "positionChanged": "positionChanged"; "zindexChanged": "zindexChanged"; }, never>;
|
|
96
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapInfoWindow, "map-info-window", ["mapInfoWindow"], { "options": "options"; "position": "position"; }, { "closeclick": "closeclick"; "contentChanged": "contentChanged"; "domready": "domready"; "positionChanged": "positionChanged"; "zindexChanged": "zindexChanged"; }, never, never, false>;
|
|
97
97
|
}
|
|
@@ -73,5 +73,5 @@ export declare class MapKmlLayer implements OnInit, OnDestroy {
|
|
|
73
73
|
private _watchForUrlChanges;
|
|
74
74
|
private _assertInitialized;
|
|
75
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapKmlLayer, never>;
|
|
76
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapKmlLayer, "map-kml-layer", ["mapKmlLayer"], { "options": "options"; "url": "url"; }, { "kmlClick": "kmlClick"; "defaultviewportChanged": "defaultviewportChanged"; "statusChanged": "statusChanged"; }, never>;
|
|
76
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapKmlLayer, "map-kml-layer", ["mapKmlLayer"], { "options": "options"; "url": "url"; }, { "kmlClick": "kmlClick"; "defaultviewportChanged": "defaultviewportChanged"; "statusChanged": "statusChanged"; }, never, never, false>;
|
|
77
77
|
}
|
|
@@ -253,5 +253,5 @@ export declare class MapMarker implements OnInit, OnChanges, OnDestroy, MapAncho
|
|
|
253
253
|
private _combineOptions;
|
|
254
254
|
private _assertInitialized;
|
|
255
255
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapMarker, never>;
|
|
256
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapMarker, "map-marker", ["mapMarker"], { "title": "title"; "position": "position"; "label": "label"; "clickable": "clickable"; "options": "options"; "icon": "icon"; "visible": "visible"; }, { "animationChanged": "animationChanged"; "mapClick": "mapClick"; "clickableChanged": "clickableChanged"; "cursorChanged": "cursorChanged"; "mapDblclick": "mapDblclick"; "mapDrag": "mapDrag"; "mapDragend": "mapDragend"; "draggableChanged": "draggableChanged"; "mapDragstart": "mapDragstart"; "flatChanged": "flatChanged"; "iconChanged": "iconChanged"; "mapMousedown": "mapMousedown"; "mapMouseout": "mapMouseout"; "mapMouseover": "mapMouseover"; "mapMouseup": "mapMouseup"; "positionChanged": "positionChanged"; "mapRightclick": "mapRightclick"; "shapeChanged": "shapeChanged"; "titleChanged": "titleChanged"; "visibleChanged": "visibleChanged"; "zindexChanged": "zindexChanged"; }, never>;
|
|
256
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapMarker, "map-marker", ["mapMarker"], { "title": "title"; "position": "position"; "label": "label"; "clickable": "clickable"; "options": "options"; "icon": "icon"; "visible": "visible"; }, { "animationChanged": "animationChanged"; "mapClick": "mapClick"; "clickableChanged": "clickableChanged"; "cursorChanged": "cursorChanged"; "mapDblclick": "mapDblclick"; "mapDrag": "mapDrag"; "mapDragend": "mapDragend"; "draggableChanged": "draggableChanged"; "mapDragstart": "mapDragstart"; "flatChanged": "flatChanged"; "iconChanged": "iconChanged"; "mapMousedown": "mapMousedown"; "mapMouseout": "mapMouseout"; "mapMouseover": "mapMouseover"; "mapMouseup": "mapMouseup"; "positionChanged": "positionChanged"; "mapRightclick": "mapRightclick"; "shapeChanged": "shapeChanged"; "titleChanged": "titleChanged"; "visibleChanged": "visibleChanged"; "zindexChanged": "zindexChanged"; }, never, never, false>;
|
|
257
257
|
}
|
|
@@ -113,5 +113,5 @@ export declare class MapMarkerClusterer implements OnInit, AfterContentInit, OnC
|
|
|
113
113
|
private _getInternalMarkers;
|
|
114
114
|
private _assertInitialized;
|
|
115
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapMarkerClusterer, never>;
|
|
116
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapMarkerClusterer, "map-marker-clusterer", ["mapMarkerClusterer"], { "ariaLabelFn": "ariaLabelFn"; "averageCenter": "averageCenter"; "batchSize": "batchSize"; "batchSizeIE": "batchSizeIE"; "calculator": "calculator"; "clusterClass": "clusterClass"; "enableRetinaIcons": "enableRetinaIcons"; "gridSize": "gridSize"; "ignoreHidden": "ignoreHidden"; "imageExtension": "imageExtension"; "imagePath": "imagePath"; "imageSizes": "imageSizes"; "maxZoom": "maxZoom"; "minimumClusterSize": "minimumClusterSize"; "styles": "styles"; "title": "title"; "zIndex": "zIndex"; "zoomOnClick": "zoomOnClick"; "options": "options"; }, { "clusteringbegin": "clusteringbegin"; "clusteringend": "clusteringend"; "clusterClick": "clusterClick"; }, ["_markers"], ["*"]>;
|
|
116
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapMarkerClusterer, "map-marker-clusterer", ["mapMarkerClusterer"], { "ariaLabelFn": "ariaLabelFn"; "averageCenter": "averageCenter"; "batchSize": "batchSize"; "batchSizeIE": "batchSizeIE"; "calculator": "calculator"; "clusterClass": "clusterClass"; "enableRetinaIcons": "enableRetinaIcons"; "gridSize": "gridSize"; "ignoreHidden": "ignoreHidden"; "imageExtension": "imageExtension"; "imagePath": "imagePath"; "imageSizes": "imageSizes"; "maxZoom": "maxZoom"; "minimumClusterSize": "minimumClusterSize"; "styles": "styles"; "title": "title"; "zIndex": "zIndex"; "zoomOnClick": "zoomOnClick"; "options": "options"; }, { "clusteringbegin": "clusteringbegin"; "clusteringend": "clusteringend"; "clusterClick": "clusterClick"; }, ["_markers"], ["*"], false>;
|
|
117
117
|
}
|
|
@@ -103,5 +103,5 @@ export declare class MapPolygon implements OnInit, OnDestroy {
|
|
|
103
103
|
private _watchForPathChanges;
|
|
104
104
|
private _assertInitialized;
|
|
105
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapPolygon, never>;
|
|
106
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapPolygon, "map-polygon", ["mapPolygon"], { "options": "options"; "paths": "paths"; }, { "polygonClick": "polygonClick"; "polygonDblclick": "polygonDblclick"; "polygonDrag": "polygonDrag"; "polygonDragend": "polygonDragend"; "polygonDragstart": "polygonDragstart"; "polygonMousedown": "polygonMousedown"; "polygonMousemove": "polygonMousemove"; "polygonMouseout": "polygonMouseout"; "polygonMouseover": "polygonMouseover"; "polygonMouseup": "polygonMouseup"; "polygonRightclick": "polygonRightclick"; }, never>;
|
|
106
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapPolygon, "map-polygon", ["mapPolygon"], { "options": "options"; "paths": "paths"; }, { "polygonClick": "polygonClick"; "polygonDblclick": "polygonDblclick"; "polygonDrag": "polygonDrag"; "polygonDragend": "polygonDragend"; "polygonDragstart": "polygonDragstart"; "polygonMousedown": "polygonMousedown"; "polygonMousemove": "polygonMousemove"; "polygonMouseout": "polygonMouseout"; "polygonMouseover": "polygonMouseover"; "polygonMouseup": "polygonMouseup"; "polygonRightclick": "polygonRightclick"; }, never, never, false>;
|
|
107
107
|
}
|
|
@@ -99,5 +99,5 @@ export declare class MapPolyline implements OnInit, OnDestroy {
|
|
|
99
99
|
private _watchForPathChanges;
|
|
100
100
|
private _assertInitialized;
|
|
101
101
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapPolyline, never>;
|
|
102
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapPolyline, "map-polyline", ["mapPolyline"], { "options": "options"; "path": "path"; }, { "polylineClick": "polylineClick"; "polylineDblclick": "polylineDblclick"; "polylineDrag": "polylineDrag"; "polylineDragend": "polylineDragend"; "polylineDragstart": "polylineDragstart"; "polylineMousedown": "polylineMousedown"; "polylineMousemove": "polylineMousemove"; "polylineMouseout": "polylineMouseout"; "polylineMouseover": "polylineMouseover"; "polylineMouseup": "polylineMouseup"; "polylineRightclick": "polylineRightclick"; }, never>;
|
|
102
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapPolyline, "map-polyline", ["mapPolyline"], { "options": "options"; "path": "path"; }, { "polylineClick": "polylineClick"; "polylineDblclick": "polylineDblclick"; "polylineDrag": "polylineDrag"; "polylineDragend": "polylineDragend"; "polylineDragstart": "polylineDragstart"; "polylineMousedown": "polylineMousedown"; "polylineMousemove": "polylineMousemove"; "polylineMouseout": "polylineMouseout"; "polylineMouseover": "polylineMouseover"; "polylineMouseup": "polylineMouseup"; "polylineRightclick": "polylineRightclick"; }, never, never, false>;
|
|
103
103
|
}
|
|
@@ -117,5 +117,5 @@ export declare class MapRectangle implements OnInit, OnDestroy {
|
|
|
117
117
|
private _watchForBoundsChanges;
|
|
118
118
|
private _assertInitialized;
|
|
119
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapRectangle, never>;
|
|
120
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapRectangle, "map-rectangle", ["mapRectangle"], { "options": "options"; "bounds": "bounds"; }, { "boundsChanged": "boundsChanged"; "rectangleClick": "rectangleClick"; "rectangleDblclick": "rectangleDblclick"; "rectangleDrag": "rectangleDrag"; "rectangleDragend": "rectangleDragend"; "rectangleDragstart": "rectangleDragstart"; "rectangleMousedown": "rectangleMousedown"; "rectangleMousemove": "rectangleMousemove"; "rectangleMouseout": "rectangleMouseout"; "rectangleMouseover": "rectangleMouseover"; "rectangleMouseup": "rectangleMouseup"; "rectangleRightclick": "rectangleRightclick"; }, never>;
|
|
120
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapRectangle, "map-rectangle", ["mapRectangle"], { "options": "options"; "bounds": "bounds"; }, { "boundsChanged": "boundsChanged"; "rectangleClick": "rectangleClick"; "rectangleDblclick": "rectangleDblclick"; "rectangleDrag": "rectangleDrag"; "rectangleDragend": "rectangleDragend"; "rectangleDragstart": "rectangleDragstart"; "rectangleMousedown": "rectangleMousedown"; "rectangleMousemove": "rectangleMousemove"; "rectangleMouseout": "rectangleMouseout"; "rectangleMouseover": "rectangleMouseover"; "rectangleMouseup": "rectangleMouseup"; "rectangleRightclick": "rectangleRightclick"; }, never, never, false>;
|
|
121
121
|
}
|
|
@@ -36,5 +36,5 @@ export declare class MapTrafficLayer implements OnInit, OnDestroy {
|
|
|
36
36
|
private _watchForAutoRefreshChanges;
|
|
37
37
|
private _assertInitialized;
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapTrafficLayer, never>;
|
|
39
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapTrafficLayer, "map-traffic-layer", ["mapTrafficLayer"], { "autoRefresh": "autoRefresh"; }, {}, never>;
|
|
39
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapTrafficLayer, "map-traffic-layer", ["mapTrafficLayer"], { "autoRefresh": "autoRefresh"; }, {}, never, never, false>;
|
|
40
40
|
}
|
|
@@ -18,5 +18,5 @@ export declare class MapTransitLayer extends MapBaseLayer {
|
|
|
18
18
|
protected _unsetMap(): void;
|
|
19
19
|
private _assertLayerInitialized;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapTransitLayer, never>;
|
|
21
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapTransitLayer, "map-transit-layer", ["mapTransitLayer"], {}, {}, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapTransitLayer, "map-transit-layer", ["mapTransitLayer"], {}, {}, never, never, false>;
|
|
22
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/google-maps",
|
|
3
|
-
"version": "14.0.0-next.
|
|
3
|
+
"version": "14.0.0-next.12",
|
|
4
4
|
"description": "Angular Google Maps",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"tslib": "^2.3.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@angular/core": "^
|
|
25
|
-
"@angular/common": "^
|
|
24
|
+
"@angular/core": "^14.0.0-0 || ^15.0.0",
|
|
25
|
+
"@angular/common": "^14.0.0-0 || ^15.0.0",
|
|
26
26
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|