@angular/google-maps 17.0.2 → 17.1.0-next.1
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/esm2022/google-map/google-map.mjs +4 -3
- package/esm2022/google-maps-module.mjs +8 -8
- package/esm2022/map-base-layer.mjs +3 -2
- package/esm2022/map-bicycling-layer/map-bicycling-layer.mjs +3 -2
- package/esm2022/map-circle/map-circle.mjs +3 -2
- package/esm2022/map-directions-renderer/map-directions-renderer.mjs +3 -2
- package/esm2022/map-ground-overlay/map-ground-overlay.mjs +3 -2
- package/esm2022/map-heatmap-layer/map-heatmap-layer.mjs +3 -2
- package/esm2022/map-info-window/map-info-window.mjs +3 -2
- package/esm2022/map-kml-layer/map-kml-layer.mjs +3 -2
- package/esm2022/map-marker/map-marker.mjs +3 -2
- package/esm2022/map-marker-clusterer/map-marker-clusterer.mjs +4 -3
- package/esm2022/map-polygon/map-polygon.mjs +3 -2
- package/esm2022/map-polyline/map-polyline.mjs +3 -2
- package/esm2022/map-rectangle/map-rectangle.mjs +3 -2
- package/esm2022/map-traffic-layer/map-traffic-layer.mjs +3 -2
- package/esm2022/map-transit-layer/map-transit-layer.mjs +3 -2
- package/fesm2022/google-maps.mjs +41 -25
- package/fesm2022/google-maps.mjs.map +1 -1
- package/index.d.ts +29 -29
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -322,12 +322,12 @@ export declare class GoogleMap implements OnChanges, OnInit, OnDestroy {
|
|
|
322
322
|
/** Asserts that the map has been initialized. */
|
|
323
323
|
private _assertInitialized;
|
|
324
324
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleMap, never>;
|
|
325
|
-
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, ["*"],
|
|
325
|
+
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>;
|
|
326
326
|
}
|
|
327
327
|
|
|
328
328
|
export declare class GoogleMapsModule {
|
|
329
329
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleMapsModule, never>;
|
|
330
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GoogleMapsModule, [typeof i1.GoogleMap, typeof i2.MapBaseLayer, typeof i3.MapBicyclingLayer, typeof i4.MapCircle, typeof i5.MapDirectionsRenderer, typeof i6.MapGroundOverlay, typeof i7.
|
|
330
|
+
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]>;
|
|
331
331
|
static ɵinj: i0.ɵɵInjectorDeclaration<GoogleMapsModule>;
|
|
332
332
|
}
|
|
333
333
|
|
|
@@ -345,44 +345,44 @@ declare namespace i1 {
|
|
|
345
345
|
|
|
346
346
|
declare namespace i10 {
|
|
347
347
|
export {
|
|
348
|
-
|
|
348
|
+
DEFAULT_MARKER_OPTIONS,
|
|
349
|
+
MapMarker
|
|
349
350
|
}
|
|
350
351
|
}
|
|
351
352
|
|
|
352
353
|
declare namespace i11 {
|
|
353
354
|
export {
|
|
354
|
-
|
|
355
|
+
MapMarkerClusterer
|
|
355
356
|
}
|
|
356
357
|
}
|
|
357
358
|
|
|
358
359
|
declare namespace i12 {
|
|
359
360
|
export {
|
|
360
|
-
|
|
361
|
+
MapPolygon
|
|
361
362
|
}
|
|
362
363
|
}
|
|
363
364
|
|
|
364
365
|
declare namespace i13 {
|
|
365
366
|
export {
|
|
366
|
-
|
|
367
|
+
MapPolyline
|
|
367
368
|
}
|
|
368
369
|
}
|
|
369
370
|
|
|
370
371
|
declare namespace i14 {
|
|
371
372
|
export {
|
|
372
|
-
|
|
373
|
+
MapRectangle
|
|
373
374
|
}
|
|
374
375
|
}
|
|
375
376
|
|
|
376
377
|
declare namespace i15 {
|
|
377
378
|
export {
|
|
378
|
-
|
|
379
|
+
MapTrafficLayer
|
|
379
380
|
}
|
|
380
381
|
}
|
|
381
382
|
|
|
382
383
|
declare namespace i16 {
|
|
383
384
|
export {
|
|
384
|
-
|
|
385
|
-
MapHeatmapLayer
|
|
385
|
+
MapTransitLayer
|
|
386
386
|
}
|
|
387
387
|
}
|
|
388
388
|
|
|
@@ -418,20 +418,20 @@ declare namespace i6 {
|
|
|
418
418
|
|
|
419
419
|
declare namespace i7 {
|
|
420
420
|
export {
|
|
421
|
-
|
|
421
|
+
HeatmapData,
|
|
422
|
+
MapHeatmapLayer
|
|
422
423
|
}
|
|
423
424
|
}
|
|
424
425
|
|
|
425
426
|
declare namespace i8 {
|
|
426
427
|
export {
|
|
427
|
-
|
|
428
|
+
MapInfoWindow
|
|
428
429
|
}
|
|
429
430
|
}
|
|
430
431
|
|
|
431
432
|
declare namespace i9 {
|
|
432
433
|
export {
|
|
433
|
-
|
|
434
|
-
MapMarker
|
|
434
|
+
MapKmlLayer
|
|
435
435
|
}
|
|
436
436
|
}
|
|
437
437
|
|
|
@@ -452,7 +452,7 @@ export declare class MapBaseLayer implements OnInit, OnDestroy {
|
|
|
452
452
|
protected _setMap(): void;
|
|
453
453
|
protected _unsetMap(): void;
|
|
454
454
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapBaseLayer, never>;
|
|
455
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapBaseLayer, "map-base-layer", ["mapBaseLayer"], {}, {}, never, never,
|
|
455
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapBaseLayer, "map-base-layer", ["mapBaseLayer"], {}, {}, never, never, true, never>;
|
|
456
456
|
}
|
|
457
457
|
|
|
458
458
|
/**
|
|
@@ -472,7 +472,7 @@ export declare class MapBicyclingLayer extends MapBaseLayer {
|
|
|
472
472
|
protected _unsetMap(): void;
|
|
473
473
|
private _assertLayerInitialized;
|
|
474
474
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapBicyclingLayer, never>;
|
|
475
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapBicyclingLayer, "map-bicycling-layer", ["mapBicyclingLayer"], {}, {}, never, never,
|
|
475
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapBicyclingLayer, "map-bicycling-layer", ["mapBicyclingLayer"], {}, {}, never, never, true, never>;
|
|
476
476
|
}
|
|
477
477
|
|
|
478
478
|
/**
|
|
@@ -600,7 +600,7 @@ export declare class MapCircle implements OnInit, OnDestroy {
|
|
|
600
600
|
private _watchForRadiusChanges;
|
|
601
601
|
private _assertInitialized;
|
|
602
602
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapCircle, never>;
|
|
603
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapCircle, "map-circle", ["mapCircle"], { "options": { "alias": "options"; "required": false; }; "center": { "alias": "center"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, { "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,
|
|
603
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapCircle, "map-circle", ["mapCircle"], { "options": { "alias": "options"; "required": false; }; "center": { "alias": "center"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, { "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, true, never>;
|
|
604
604
|
}
|
|
605
605
|
|
|
606
606
|
/**
|
|
@@ -654,7 +654,7 @@ export declare class MapDirectionsRenderer implements OnInit, OnChanges, OnDestr
|
|
|
654
654
|
private _combineOptions;
|
|
655
655
|
private _assertInitialized;
|
|
656
656
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapDirectionsRenderer, never>;
|
|
657
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapDirectionsRenderer, "map-directions-renderer", ["mapDirectionsRenderer"], { "directions": { "alias": "directions"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "directionsChanged": "directionsChanged"; }, never, never,
|
|
657
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapDirectionsRenderer, "map-directions-renderer", ["mapDirectionsRenderer"], { "directions": { "alias": "directions"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "directionsChanged": "directionsChanged"; }, never, never, true, never>;
|
|
658
658
|
}
|
|
659
659
|
|
|
660
660
|
export declare interface MapDirectionsResponse {
|
|
@@ -789,7 +789,7 @@ export declare class MapGroundOverlay implements OnInit, OnDestroy {
|
|
|
789
789
|
private _watchForUrlChanges;
|
|
790
790
|
private _assertInitialized;
|
|
791
791
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapGroundOverlay, never>;
|
|
792
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapGroundOverlay, "map-ground-overlay", ["mapGroundOverlay"], { "url": { "alias": "url"; "required": false; }; "bounds": { "alias": "bounds"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; }, { "mapClick": "mapClick"; "mapDblclick": "mapDblclick"; }, never, never,
|
|
792
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapGroundOverlay, "map-ground-overlay", ["mapGroundOverlay"], { "url": { "alias": "url"; "required": false; }; "bounds": { "alias": "bounds"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; }, { "mapClick": "mapClick"; "mapDblclick": "mapDblclick"; }, never, never, true, never>;
|
|
793
793
|
}
|
|
794
794
|
|
|
795
795
|
/**
|
|
@@ -841,7 +841,7 @@ export declare class MapHeatmapLayer implements OnInit, OnChanges, OnDestroy {
|
|
|
841
841
|
/** Asserts that the heatmap object has been initialized. */
|
|
842
842
|
private _assertInitialized;
|
|
843
843
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapHeatmapLayer, never>;
|
|
844
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapHeatmapLayer, "map-heatmap-layer", ["mapHeatmapLayer"], { "data": { "alias": "data"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never,
|
|
844
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapHeatmapLayer, "map-heatmap-layer", ["mapHeatmapLayer"], { "data": { "alias": "data"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
845
845
|
}
|
|
846
846
|
|
|
847
847
|
/**
|
|
@@ -926,7 +926,7 @@ export declare class MapInfoWindow implements OnInit, OnDestroy {
|
|
|
926
926
|
private _watchForPositionChanges;
|
|
927
927
|
private _assertInitialized;
|
|
928
928
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapInfoWindow, never>;
|
|
929
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapInfoWindow, "map-info-window", ["mapInfoWindow"], { "options": { "alias": "options"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, { "closeclick": "closeclick"; "contentChanged": "contentChanged"; "domready": "domready"; "positionChanged": "positionChanged"; "zindexChanged": "zindexChanged"; }, never, never,
|
|
929
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapInfoWindow, "map-info-window", ["mapInfoWindow"], { "options": { "alias": "options"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, { "closeclick": "closeclick"; "contentChanged": "contentChanged"; "domready": "domready"; "positionChanged": "positionChanged"; "zindexChanged": "zindexChanged"; }, never, never, true, never>;
|
|
930
930
|
}
|
|
931
931
|
|
|
932
932
|
/**
|
|
@@ -992,7 +992,7 @@ export declare class MapKmlLayer implements OnInit, OnDestroy {
|
|
|
992
992
|
private _watchForUrlChanges;
|
|
993
993
|
private _assertInitialized;
|
|
994
994
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapKmlLayer, never>;
|
|
995
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapKmlLayer, "map-kml-layer", ["mapKmlLayer"], { "options": { "alias": "options"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, { "kmlClick": "kmlClick"; "defaultviewportChanged": "defaultviewportChanged"; "statusChanged": "statusChanged"; }, never, never,
|
|
995
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapKmlLayer, "map-kml-layer", ["mapKmlLayer"], { "options": { "alias": "options"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, { "kmlClick": "kmlClick"; "defaultviewportChanged": "defaultviewportChanged"; "statusChanged": "statusChanged"; }, never, never, true, never>;
|
|
996
996
|
}
|
|
997
997
|
|
|
998
998
|
/**
|
|
@@ -1227,7 +1227,7 @@ export declare class MapMarker implements OnInit, OnChanges, OnDestroy, MapAncho
|
|
|
1227
1227
|
private _combineOptions;
|
|
1228
1228
|
private _assertInitialized;
|
|
1229
1229
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapMarker, never>;
|
|
1230
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapMarker, "map-marker", ["mapMarker"], { "title": { "alias": "title"; "required": false; }; "position": { "alias": "position"; "required": false; }; "label": { "alias": "label"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "options": { "alias": "options"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "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,
|
|
1230
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapMarker, "map-marker", ["mapMarker"], { "title": { "alias": "title"; "required": false; }; "position": { "alias": "position"; "required": false; }; "label": { "alias": "label"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "options": { "alias": "options"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "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, true, never>;
|
|
1231
1231
|
}
|
|
1232
1232
|
|
|
1233
1233
|
/**
|
|
@@ -1331,7 +1331,7 @@ export declare class MapMarkerClusterer implements OnInit, AfterContentInit, OnC
|
|
|
1331
1331
|
private _getInternalMarkers;
|
|
1332
1332
|
private _assertInitialized;
|
|
1333
1333
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapMarkerClusterer, never>;
|
|
1334
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapMarkerClusterer, "map-marker-clusterer", ["mapMarkerClusterer"], { "ariaLabelFn": { "alias": "ariaLabelFn"; "required": false; }; "averageCenter": { "alias": "averageCenter"; "required": false; }; "batchSize": { "alias": "batchSize"; "required": false; }; "batchSizeIE": { "alias": "batchSizeIE"; "required": false; }; "calculator": { "alias": "calculator"; "required": false; }; "clusterClass": { "alias": "clusterClass"; "required": false; }; "enableRetinaIcons": { "alias": "enableRetinaIcons"; "required": false; }; "gridSize": { "alias": "gridSize"; "required": false; }; "ignoreHidden": { "alias": "ignoreHidden"; "required": false; }; "imageExtension": { "alias": "imageExtension"; "required": false; }; "imagePath": { "alias": "imagePath"; "required": false; }; "imageSizes": { "alias": "imageSizes"; "required": false; }; "maxZoom": { "alias": "maxZoom"; "required": false; }; "minimumClusterSize": { "alias": "minimumClusterSize"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "title": { "alias": "title"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; "zoomOnClick": { "alias": "zoomOnClick"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "clusteringbegin": "clusteringbegin"; "clusteringend": "clusteringend"; "clusterClick": "clusterClick"; }, ["_markers"], ["*"],
|
|
1334
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapMarkerClusterer, "map-marker-clusterer", ["mapMarkerClusterer"], { "ariaLabelFn": { "alias": "ariaLabelFn"; "required": false; }; "averageCenter": { "alias": "averageCenter"; "required": false; }; "batchSize": { "alias": "batchSize"; "required": false; }; "batchSizeIE": { "alias": "batchSizeIE"; "required": false; }; "calculator": { "alias": "calculator"; "required": false; }; "clusterClass": { "alias": "clusterClass"; "required": false; }; "enableRetinaIcons": { "alias": "enableRetinaIcons"; "required": false; }; "gridSize": { "alias": "gridSize"; "required": false; }; "ignoreHidden": { "alias": "ignoreHidden"; "required": false; }; "imageExtension": { "alias": "imageExtension"; "required": false; }; "imagePath": { "alias": "imagePath"; "required": false; }; "imageSizes": { "alias": "imageSizes"; "required": false; }; "maxZoom": { "alias": "maxZoom"; "required": false; }; "minimumClusterSize": { "alias": "minimumClusterSize"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "title": { "alias": "title"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; "zoomOnClick": { "alias": "zoomOnClick"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "clusteringbegin": "clusteringbegin"; "clusteringend": "clusteringend"; "clusterClick": "clusterClick"; }, ["_markers"], ["*"], true, never>;
|
|
1335
1335
|
}
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
@@ -1427,7 +1427,7 @@ export declare class MapPolygon implements OnInit, OnDestroy {
|
|
|
1427
1427
|
private _watchForPathChanges;
|
|
1428
1428
|
private _assertInitialized;
|
|
1429
1429
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapPolygon, never>;
|
|
1430
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapPolygon, "map-polygon", ["mapPolygon"], { "options": { "alias": "options"; "required": false; }; "paths": { "alias": "paths"; "required": false; }; }, { "polygonClick": "polygonClick"; "polygonDblclick": "polygonDblclick"; "polygonDrag": "polygonDrag"; "polygonDragend": "polygonDragend"; "polygonDragstart": "polygonDragstart"; "polygonMousedown": "polygonMousedown"; "polygonMousemove": "polygonMousemove"; "polygonMouseout": "polygonMouseout"; "polygonMouseover": "polygonMouseover"; "polygonMouseup": "polygonMouseup"; "polygonRightclick": "polygonRightclick"; }, never, never,
|
|
1430
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapPolygon, "map-polygon", ["mapPolygon"], { "options": { "alias": "options"; "required": false; }; "paths": { "alias": "paths"; "required": false; }; }, { "polygonClick": "polygonClick"; "polygonDblclick": "polygonDblclick"; "polygonDrag": "polygonDrag"; "polygonDragend": "polygonDragend"; "polygonDragstart": "polygonDragstart"; "polygonMousedown": "polygonMousedown"; "polygonMousemove": "polygonMousemove"; "polygonMouseout": "polygonMouseout"; "polygonMouseover": "polygonMouseover"; "polygonMouseup": "polygonMouseup"; "polygonRightclick": "polygonRightclick"; }, never, never, true, never>;
|
|
1431
1431
|
}
|
|
1432
1432
|
|
|
1433
1433
|
/**
|
|
@@ -1519,7 +1519,7 @@ export declare class MapPolyline implements OnInit, OnDestroy {
|
|
|
1519
1519
|
private _watchForPathChanges;
|
|
1520
1520
|
private _assertInitialized;
|
|
1521
1521
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapPolyline, never>;
|
|
1522
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapPolyline, "map-polyline", ["mapPolyline"], { "options": { "alias": "options"; "required": false; }; "path": { "alias": "path"; "required": false; }; }, { "polylineClick": "polylineClick"; "polylineDblclick": "polylineDblclick"; "polylineDrag": "polylineDrag"; "polylineDragend": "polylineDragend"; "polylineDragstart": "polylineDragstart"; "polylineMousedown": "polylineMousedown"; "polylineMousemove": "polylineMousemove"; "polylineMouseout": "polylineMouseout"; "polylineMouseover": "polylineMouseover"; "polylineMouseup": "polylineMouseup"; "polylineRightclick": "polylineRightclick"; }, never, never,
|
|
1522
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapPolyline, "map-polyline", ["mapPolyline"], { "options": { "alias": "options"; "required": false; }; "path": { "alias": "path"; "required": false; }; }, { "polylineClick": "polylineClick"; "polylineDblclick": "polylineDblclick"; "polylineDrag": "polylineDrag"; "polylineDragend": "polylineDragend"; "polylineDragstart": "polylineDragstart"; "polylineMousedown": "polylineMousedown"; "polylineMousemove": "polylineMousemove"; "polylineMouseout": "polylineMouseout"; "polylineMouseover": "polylineMouseover"; "polylineMouseup": "polylineMouseup"; "polylineRightclick": "polylineRightclick"; }, never, never, true, never>;
|
|
1523
1523
|
}
|
|
1524
1524
|
|
|
1525
1525
|
/**
|
|
@@ -1629,7 +1629,7 @@ export declare class MapRectangle implements OnInit, OnDestroy {
|
|
|
1629
1629
|
private _watchForBoundsChanges;
|
|
1630
1630
|
private _assertInitialized;
|
|
1631
1631
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapRectangle, never>;
|
|
1632
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapRectangle, "map-rectangle", ["mapRectangle"], { "options": { "alias": "options"; "required": false; }; "bounds": { "alias": "bounds"; "required": false; }; }, { "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,
|
|
1632
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapRectangle, "map-rectangle", ["mapRectangle"], { "options": { "alias": "options"; "required": false; }; "bounds": { "alias": "bounds"; "required": false; }; }, { "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, true, never>;
|
|
1633
1633
|
}
|
|
1634
1634
|
|
|
1635
1635
|
/**
|
|
@@ -1659,7 +1659,7 @@ export declare class MapTrafficLayer implements OnInit, OnDestroy {
|
|
|
1659
1659
|
private _watchForAutoRefreshChanges;
|
|
1660
1660
|
private _assertInitialized;
|
|
1661
1661
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapTrafficLayer, never>;
|
|
1662
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapTrafficLayer, "map-traffic-layer", ["mapTrafficLayer"], { "autoRefresh": { "alias": "autoRefresh"; "required": false; }; }, {}, never, never,
|
|
1662
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapTrafficLayer, "map-traffic-layer", ["mapTrafficLayer"], { "autoRefresh": { "alias": "autoRefresh"; "required": false; }; }, {}, never, never, true, never>;
|
|
1663
1663
|
}
|
|
1664
1664
|
|
|
1665
1665
|
/**
|
|
@@ -1679,7 +1679,7 @@ export declare class MapTransitLayer extends MapBaseLayer {
|
|
|
1679
1679
|
protected _unsetMap(): void;
|
|
1680
1680
|
private _assertLayerInitialized;
|
|
1681
1681
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapTransitLayer, never>;
|
|
1682
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MapTransitLayer, "map-transit-layer", ["mapTransitLayer"], {}, {}, never, never,
|
|
1682
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MapTransitLayer, "map-transit-layer", ["mapTransitLayer"], {}, {}, never, never, true, never>;
|
|
1683
1683
|
}
|
|
1684
1684
|
|
|
1685
1685
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/google-maps",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.1.0-next.1",
|
|
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": "^17.0.0 || ^18.0.0",
|
|
25
|
-
"@angular/common": "^17.0.0 || ^18.0.0",
|
|
24
|
+
"@angular/core": "^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0",
|
|
25
|
+
"@angular/common": "^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0",
|
|
26
26
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|