@angular/google-maps 16.0.0-next.2 → 16.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/index.d.ts
CHANGED
|
@@ -315,7 +315,7 @@ export declare class GoogleMap implements OnChanges, OnInit, OnDestroy {
|
|
|
315
315
|
* See
|
|
316
316
|
* https://developers.google.com/maps/documentation/javascript/reference/map#Map.overlayMapTypes
|
|
317
317
|
*/
|
|
318
|
-
get overlayMapTypes(): google.maps.MVCArray<google.maps.MapType>;
|
|
318
|
+
get overlayMapTypes(): google.maps.MVCArray<google.maps.MapType | null>;
|
|
319
319
|
private _setSize;
|
|
320
320
|
/** Combines the center and zoom and the other map options into a single object */
|
|
321
321
|
private _combineOptions;
|
|
@@ -1190,7 +1190,7 @@ export declare class MapMarker implements OnInit, OnChanges, OnDestroy, MapAncho
|
|
|
1190
1190
|
* See
|
|
1191
1191
|
* developers.google.com/maps/documentation/javascript/reference/marker#Marker.getLabel
|
|
1192
1192
|
*/
|
|
1193
|
-
getLabel(): google.maps.MarkerLabel | null;
|
|
1193
|
+
getLabel(): google.maps.MarkerLabel | string | null;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* See
|
|
1196
1196
|
* developers.google.com/maps/documentation/javascript/reference/marker#Marker.getOpacity
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/google-maps",
|
|
3
|
-
"version": "16.0.0-next.
|
|
3
|
+
"version": "16.0.0-next.4",
|
|
4
4
|
"description": "Angular Google Maps",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/angular/components/tree/main/src/google-maps#readme",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@types/google.maps": "^3.
|
|
20
|
+
"@types/google.maps": "^3.52.4",
|
|
21
21
|
"tslib": "^2.3.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|