@angular/google-maps 13.0.0-next.8 → 13.0.0-rc.3
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 +9 -10
- package/esm2020/google-maps-module.mjs +5 -5
- package/esm2020/google-maps_public_index.mjs +5 -0
- package/esm2020/index.mjs +6 -2
- 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 +8 -7
- package/esm2020/map-directions-renderer/map-directions-renderer.mjs +5 -5
- package/esm2020/map-directions-renderer/map-directions-service.mjs +4 -4
- package/esm2020/map-event-manager.mjs +1 -1
- 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 +5 -5
- package/esm2020/map-info-window/map-info-window.mjs +5 -5
- package/esm2020/map-kml-layer/map-kml-layer.mjs +9 -7
- package/esm2020/map-marker/map-marker.mjs +5 -5
- package/esm2020/map-marker-clusterer/map-marker-clusterer.mjs +11 -8
- package/esm2020/map-marker-clusterer/marker-clusterer-types.mjs +1 -1
- package/esm2020/map-polygon/map-polygon.mjs +8 -6
- package/esm2020/map-polyline/map-polyline.mjs +9 -7
- package/esm2020/map-rectangle/map-rectangle.mjs +7 -5
- package/esm2020/map-traffic-layer/map-traffic-layer.mjs +10 -6
- package/esm2020/map-transit-layer/map-transit-layer.mjs +4 -4
- package/fesm2015/google-maps.mjs +100 -77
- package/fesm2015/google-maps.mjs.map +1 -1
- package/fesm2020/google-maps.mjs +102 -79
- package/fesm2020/google-maps.mjs.map +1 -1
- package/google-maps_public_index.d.ts +4 -0
- package/index.d.ts +5 -1
- package/package.json +5 -5
package/fesm2015/google-maps.mjs
CHANGED
|
@@ -75,7 +75,7 @@ const DEFAULT_OPTIONS = {
|
|
|
75
75
|
center: { lat: 37.421995, lng: -122.084092 },
|
|
76
76
|
zoom: 17,
|
|
77
77
|
// Note: the type conversion here isn't necessary for our CI, but it resolves a g3 failure.
|
|
78
|
-
mapTypeId: 'roadmap'
|
|
78
|
+
mapTypeId: 'roadmap',
|
|
79
79
|
};
|
|
80
80
|
/** Arbitrary default height for the map element */
|
|
81
81
|
const DEFAULT_HEIGHT = '500px';
|
|
@@ -115,8 +115,7 @@ class GoogleMap {
|
|
|
115
115
|
* See
|
|
116
116
|
* https://developers.google.com/maps/documentation/javascript/reference/map#Map.click
|
|
117
117
|
*/
|
|
118
|
-
this.mapClick = this._eventManager
|
|
119
|
-
.getLazyEmitter('click');
|
|
118
|
+
this.mapClick = this._eventManager.getLazyEmitter('click');
|
|
120
119
|
/**
|
|
121
120
|
* See
|
|
122
121
|
* https://developers.google.com/maps/documentation/javascript/reference/map#Map.dblclick
|
|
@@ -401,8 +400,8 @@ class GoogleMap {
|
|
|
401
400
|
if (this._mapEl) {
|
|
402
401
|
const styles = this._mapEl.style;
|
|
403
402
|
styles.height =
|
|
404
|
-
this.height === null ? '' :
|
|
405
|
-
styles.width = this.width === null ? '' :
|
|
403
|
+
this.height === null ? '' : coerceCssPixelValue(this.height) || DEFAULT_HEIGHT;
|
|
404
|
+
styles.width = this.width === null ? '' : coerceCssPixelValue(this.width) || DEFAULT_WIDTH;
|
|
406
405
|
}
|
|
407
406
|
}
|
|
408
407
|
/** Combines the center and zoom and the other map options into a single object */
|
|
@@ -425,9 +424,9 @@ class GoogleMap {
|
|
|
425
424
|
}
|
|
426
425
|
}
|
|
427
426
|
}
|
|
428
|
-
GoogleMap.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
429
|
-
GoogleMap.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.0-
|
|
430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
427
|
+
GoogleMap.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: GoogleMap, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Component });
|
|
428
|
+
GoogleMap.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: GoogleMap, selector: "google-map", inputs: { height: "height", width: "width", mapTypeId: "mapTypeId", center: "center", zoom: "zoom", options: "options" }, outputs: { 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" }, exportAs: ["googleMap"], usesOnChanges: true, ngImport: i0, template: '<div class="map-container"></div><ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
429
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: GoogleMap, decorators: [{
|
|
431
430
|
type: Component,
|
|
432
431
|
args: [{
|
|
433
432
|
selector: 'google-map',
|
|
@@ -529,9 +528,9 @@ class MapBaseLayer {
|
|
|
529
528
|
_setMap() { }
|
|
530
529
|
_unsetMap() { }
|
|
531
530
|
}
|
|
532
|
-
MapBaseLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
533
|
-
MapBaseLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
531
|
+
MapBaseLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapBaseLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
532
|
+
MapBaseLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapBaseLayer, selector: "map-base-layer", exportAs: ["mapBaseLayer"], ngImport: i0 });
|
|
533
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapBaseLayer, decorators: [{
|
|
535
534
|
type: Directive,
|
|
536
535
|
args: [{
|
|
537
536
|
selector: 'map-base-layer',
|
|
@@ -565,9 +564,9 @@ class MapBicyclingLayer extends MapBaseLayer {
|
|
|
565
564
|
}
|
|
566
565
|
}
|
|
567
566
|
}
|
|
568
|
-
MapBicyclingLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
569
|
-
MapBicyclingLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
567
|
+
MapBicyclingLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapBicyclingLayer, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
568
|
+
MapBicyclingLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapBicyclingLayer, selector: "map-bicycling-layer", exportAs: ["mapBicyclingLayer"], usesInheritance: true, ngImport: i0 });
|
|
569
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapBicyclingLayer, decorators: [{
|
|
571
570
|
type: Directive,
|
|
572
571
|
args: [{
|
|
573
572
|
selector: 'map-bicycling-layer',
|
|
@@ -666,7 +665,9 @@ class MapCircle {
|
|
|
666
665
|
}
|
|
667
666
|
ngOnInit() {
|
|
668
667
|
if (this._map._isBrowser) {
|
|
669
|
-
this._combineOptions()
|
|
668
|
+
this._combineOptions()
|
|
669
|
+
.pipe(take(1))
|
|
670
|
+
.subscribe(options => {
|
|
670
671
|
// Create the object outside the zone so its events don't trigger change detection.
|
|
671
672
|
// We'll bring it back in inside the `MapEventManager` only for the events that the
|
|
672
673
|
// user has subscribed to.
|
|
@@ -739,8 +740,7 @@ class MapCircle {
|
|
|
739
740
|
return this.circle.getVisible();
|
|
740
741
|
}
|
|
741
742
|
_combineOptions() {
|
|
742
|
-
return combineLatest([this._options, this._center, this._radius])
|
|
743
|
-
.pipe(map(([options, center, radius]) => {
|
|
743
|
+
return combineLatest([this._options, this._center, this._radius]).pipe(map(([options, center, radius]) => {
|
|
744
744
|
const combinedOptions = Object.assign(Object.assign({}, options), { center: center || options.center, radius: radius !== undefined ? radius : options.radius });
|
|
745
745
|
return combinedOptions;
|
|
746
746
|
}));
|
|
@@ -780,9 +780,9 @@ class MapCircle {
|
|
|
780
780
|
}
|
|
781
781
|
}
|
|
782
782
|
}
|
|
783
|
-
MapCircle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
784
|
-
MapCircle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
785
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
783
|
+
MapCircle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapCircle, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
784
|
+
MapCircle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapCircle, selector: "map-circle", inputs: { options: "options", center: "center", radius: "radius" }, outputs: { 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" }, exportAs: ["mapCircle"], ngImport: i0 });
|
|
785
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapCircle, decorators: [{
|
|
786
786
|
type: Directive,
|
|
787
787
|
args: [{
|
|
788
788
|
selector: 'map-circle',
|
|
@@ -925,9 +925,9 @@ class MapDirectionsRenderer {
|
|
|
925
925
|
}
|
|
926
926
|
}
|
|
927
927
|
}
|
|
928
|
-
MapDirectionsRenderer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
929
|
-
MapDirectionsRenderer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
930
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
928
|
+
MapDirectionsRenderer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapDirectionsRenderer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
929
|
+
MapDirectionsRenderer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapDirectionsRenderer, selector: "map-directions-renderer", inputs: { directions: "directions", options: "options" }, outputs: { directionsChanged: "directionsChanged" }, exportAs: ["mapDirectionsRenderer"], usesOnChanges: true, ngImport: i0 });
|
|
930
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapDirectionsRenderer, decorators: [{
|
|
931
931
|
type: Directive,
|
|
932
932
|
args: [{
|
|
933
933
|
selector: 'map-directions-renderer',
|
|
@@ -1080,9 +1080,9 @@ class MapGroundOverlay {
|
|
|
1080
1080
|
}
|
|
1081
1081
|
}
|
|
1082
1082
|
}
|
|
1083
|
-
MapGroundOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
1084
|
-
MapGroundOverlay.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
1085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
1083
|
+
MapGroundOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapGroundOverlay, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1084
|
+
MapGroundOverlay.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapGroundOverlay, selector: "map-ground-overlay", inputs: { url: "url", bounds: "bounds", clickable: "clickable", opacity: "opacity" }, outputs: { mapClick: "mapClick", mapDblclick: "mapDblclick" }, exportAs: ["mapGroundOverlay"], ngImport: i0 });
|
|
1085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapGroundOverlay, decorators: [{
|
|
1086
1086
|
type: Directive,
|
|
1087
1087
|
args: [{
|
|
1088
1088
|
selector: 'map-ground-overlay',
|
|
@@ -1260,9 +1260,9 @@ class MapInfoWindow {
|
|
|
1260
1260
|
}
|
|
1261
1261
|
}
|
|
1262
1262
|
}
|
|
1263
|
-
MapInfoWindow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
1264
|
-
MapInfoWindow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
1265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
1263
|
+
MapInfoWindow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapInfoWindow, deps: [{ token: GoogleMap }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1264
|
+
MapInfoWindow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapInfoWindow, selector: "map-info-window", inputs: { options: "options", position: "position" }, outputs: { closeclick: "closeclick", contentChanged: "contentChanged", domready: "domready", positionChanged: "positionChanged", zindexChanged: "zindexChanged" }, host: { styleAttribute: "display: none" }, exportAs: ["mapInfoWindow"], ngImport: i0 });
|
|
1265
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapInfoWindow, decorators: [{
|
|
1266
1266
|
type: Directive,
|
|
1267
1267
|
args: [{
|
|
1268
1268
|
selector: 'map-info-window',
|
|
@@ -1322,11 +1322,13 @@ class MapKmlLayer {
|
|
|
1322
1322
|
}
|
|
1323
1323
|
ngOnInit() {
|
|
1324
1324
|
if (this._map._isBrowser) {
|
|
1325
|
-
this._combineOptions()
|
|
1325
|
+
this._combineOptions()
|
|
1326
|
+
.pipe(take(1))
|
|
1327
|
+
.subscribe(options => {
|
|
1326
1328
|
// Create the object outside the zone so its events don't trigger change detection.
|
|
1327
1329
|
// We'll bring it back in inside the `MapEventManager` only for the events that the
|
|
1328
1330
|
// user has subscribed to.
|
|
1329
|
-
this._ngZone.runOutsideAngular(() => this.kmlLayer = new google.maps.KmlLayer(options));
|
|
1331
|
+
this._ngZone.runOutsideAngular(() => (this.kmlLayer = new google.maps.KmlLayer(options)));
|
|
1330
1332
|
this._assertInitialized();
|
|
1331
1333
|
this.kmlLayer.setMap(this._map.googleMap);
|
|
1332
1334
|
this._eventManager.setTarget(this.kmlLayer);
|
|
@@ -1414,9 +1416,9 @@ class MapKmlLayer {
|
|
|
1414
1416
|
}
|
|
1415
1417
|
}
|
|
1416
1418
|
}
|
|
1417
|
-
MapKmlLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
1418
|
-
MapKmlLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
1419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
1419
|
+
MapKmlLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapKmlLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1420
|
+
MapKmlLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapKmlLayer, selector: "map-kml-layer", inputs: { options: "options", url: "url" }, outputs: { kmlClick: "kmlClick", defaultviewportChanged: "defaultviewportChanged", statusChanged: "statusChanged" }, exportAs: ["mapKmlLayer"], ngImport: i0 });
|
|
1421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapKmlLayer, decorators: [{
|
|
1420
1422
|
type: Directive,
|
|
1421
1423
|
args: [{
|
|
1422
1424
|
selector: 'map-kml-layer',
|
|
@@ -1772,9 +1774,9 @@ class MapMarker {
|
|
|
1772
1774
|
}
|
|
1773
1775
|
}
|
|
1774
1776
|
}
|
|
1775
|
-
MapMarker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
1776
|
-
MapMarker.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
1777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
1777
|
+
MapMarker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapMarker, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1778
|
+
MapMarker.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapMarker, selector: "map-marker", inputs: { title: "title", position: "position", label: "label", clickable: "clickable", options: "options", icon: "icon", visible: "visible" }, outputs: { 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" }, exportAs: ["mapMarker"], usesOnChanges: true, ngImport: i0 });
|
|
1779
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapMarker, decorators: [{
|
|
1778
1780
|
type: Directive,
|
|
1779
1781
|
args: [{
|
|
1780
1782
|
selector: 'map-marker',
|
|
@@ -1944,7 +1946,7 @@ class MapMarkerClusterer {
|
|
|
1944
1946
|
}
|
|
1945
1947
|
}
|
|
1946
1948
|
ngOnChanges(changes) {
|
|
1947
|
-
const { markerClusterer: clusterer, ariaLabelFn, _averageCenter, _batchSizeIE, _calculator, _styles, _clusterClass, _enableRetinaIcons, _gridSize, _ignoreHidden, _imageExtension, _imagePath, _imageSizes, _maxZoom, _minimumClusterSize, _title, _zIndex, _zoomOnClick } = this;
|
|
1949
|
+
const { markerClusterer: clusterer, ariaLabelFn, _averageCenter, _batchSizeIE, _calculator, _styles, _clusterClass, _enableRetinaIcons, _gridSize, _ignoreHidden, _imageExtension, _imagePath, _imageSizes, _maxZoom, _minimumClusterSize, _title, _zIndex, _zoomOnClick, } = this;
|
|
1948
1950
|
if (clusterer) {
|
|
1949
1951
|
if (changes['options']) {
|
|
1950
1952
|
clusterer.setOptions(this._combineOptions());
|
|
@@ -2103,7 +2105,9 @@ class MapMarkerClusterer {
|
|
|
2103
2105
|
initialMarkers.push(marker);
|
|
2104
2106
|
}
|
|
2105
2107
|
this.markerClusterer.addMarkers(initialMarkers);
|
|
2106
|
-
this._markers.changes
|
|
2108
|
+
this._markers.changes
|
|
2109
|
+
.pipe(takeUntil(this._destroy))
|
|
2110
|
+
.subscribe((markerComponents) => {
|
|
2107
2111
|
this._assertInitialized();
|
|
2108
2112
|
const newMarkers = new Set(this._getInternalMarkers(markerComponents));
|
|
2109
2113
|
const markersToAdd = [];
|
|
@@ -2128,7 +2132,8 @@ class MapMarkerClusterer {
|
|
|
2128
2132
|
});
|
|
2129
2133
|
}
|
|
2130
2134
|
_getInternalMarkers(markers) {
|
|
2131
|
-
return markers
|
|
2135
|
+
return markers
|
|
2136
|
+
.filter(markerComponent => !!markerComponent.marker)
|
|
2132
2137
|
.map(markerComponent => markerComponent.marker);
|
|
2133
2138
|
}
|
|
2134
2139
|
_assertInitialized() {
|
|
@@ -2144,9 +2149,9 @@ class MapMarkerClusterer {
|
|
|
2144
2149
|
}
|
|
2145
2150
|
}
|
|
2146
2151
|
}
|
|
2147
|
-
MapMarkerClusterer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
2148
|
-
MapMarkerClusterer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.0-
|
|
2149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
2152
|
+
MapMarkerClusterer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapMarkerClusterer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2153
|
+
MapMarkerClusterer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapMarkerClusterer, selector: "map-marker-clusterer", inputs: { 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" }, outputs: { clusteringbegin: "clusteringbegin", clusteringend: "clusteringend", clusterClick: "clusterClick" }, queries: [{ propertyName: "_markers", predicate: MapMarker, descendants: true }], exportAs: ["mapMarkerClusterer"], usesOnChanges: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
2154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapMarkerClusterer, decorators: [{
|
|
2150
2155
|
type: Component,
|
|
2151
2156
|
args: [{
|
|
2152
2157
|
selector: 'map-marker-clusterer',
|
|
@@ -2271,7 +2276,9 @@ class MapPolygon {
|
|
|
2271
2276
|
}
|
|
2272
2277
|
ngOnInit() {
|
|
2273
2278
|
if (this._map._isBrowser) {
|
|
2274
|
-
this._combineOptions()
|
|
2279
|
+
this._combineOptions()
|
|
2280
|
+
.pipe(take(1))
|
|
2281
|
+
.subscribe(options => {
|
|
2275
2282
|
// Create the object outside the zone so its events don't trigger change detection.
|
|
2276
2283
|
// We'll bring it back in inside the `MapEventManager` only for the events that the
|
|
2277
2284
|
// user has subscribed to.
|
|
@@ -2363,9 +2370,9 @@ class MapPolygon {
|
|
|
2363
2370
|
}
|
|
2364
2371
|
}
|
|
2365
2372
|
}
|
|
2366
|
-
MapPolygon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
2367
|
-
MapPolygon.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
2368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
2373
|
+
MapPolygon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapPolygon, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2374
|
+
MapPolygon.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapPolygon, selector: "map-polygon", inputs: { options: "options", paths: "paths" }, outputs: { polygonClick: "polygonClick", polygonDblclick: "polygonDblclick", polygonDrag: "polygonDrag", polygonDragend: "polygonDragend", polygonDragstart: "polygonDragstart", polygonMousedown: "polygonMousedown", polygonMousemove: "polygonMousemove", polygonMouseout: "polygonMouseout", polygonMouseover: "polygonMouseover", polygonMouseup: "polygonMouseup", polygonRightclick: "polygonRightclick" }, exportAs: ["mapPolygon"], ngImport: i0 });
|
|
2375
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapPolygon, decorators: [{
|
|
2369
2376
|
type: Directive,
|
|
2370
2377
|
args: [{
|
|
2371
2378
|
selector: 'map-polygon',
|
|
@@ -2466,11 +2473,13 @@ class MapPolyline {
|
|
|
2466
2473
|
}
|
|
2467
2474
|
ngOnInit() {
|
|
2468
2475
|
if (this._map._isBrowser) {
|
|
2469
|
-
this._combineOptions()
|
|
2476
|
+
this._combineOptions()
|
|
2477
|
+
.pipe(take(1))
|
|
2478
|
+
.subscribe(options => {
|
|
2470
2479
|
// Create the object outside the zone so its events don't trigger change detection.
|
|
2471
2480
|
// We'll bring it back in inside the `MapEventManager` only for the events that the
|
|
2472
2481
|
// user has subscribed to.
|
|
2473
|
-
this._ngZone.runOutsideAngular(() => this.polyline = new google.maps.Polyline(options));
|
|
2482
|
+
this._ngZone.runOutsideAngular(() => (this.polyline = new google.maps.Polyline(options)));
|
|
2474
2483
|
this._assertInitialized();
|
|
2475
2484
|
this.polyline.setMap(this._map.googleMap);
|
|
2476
2485
|
this._eventManager.setTarget(this.polyline);
|
|
@@ -2549,9 +2558,9 @@ class MapPolyline {
|
|
|
2549
2558
|
}
|
|
2550
2559
|
}
|
|
2551
2560
|
}
|
|
2552
|
-
MapPolyline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
2553
|
-
MapPolyline.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
2554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
2561
|
+
MapPolyline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapPolyline, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2562
|
+
MapPolyline.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapPolyline, selector: "map-polyline", inputs: { options: "options", path: "path" }, outputs: { polylineClick: "polylineClick", polylineDblclick: "polylineDblclick", polylineDrag: "polylineDrag", polylineDragend: "polylineDragend", polylineDragstart: "polylineDragstart", polylineMousedown: "polylineMousedown", polylineMousemove: "polylineMousemove", polylineMouseout: "polylineMouseout", polylineMouseover: "polylineMouseover", polylineMouseup: "polylineMouseup", polylineRightclick: "polylineRightclick" }, exportAs: ["mapPolyline"], ngImport: i0 });
|
|
2563
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapPolyline, decorators: [{
|
|
2555
2564
|
type: Directive,
|
|
2556
2565
|
args: [{
|
|
2557
2566
|
selector: 'map-polyline',
|
|
@@ -2667,7 +2676,9 @@ class MapRectangle {
|
|
|
2667
2676
|
}
|
|
2668
2677
|
ngOnInit() {
|
|
2669
2678
|
if (this._map._isBrowser) {
|
|
2670
|
-
this._combineOptions()
|
|
2679
|
+
this._combineOptions()
|
|
2680
|
+
.pipe(take(1))
|
|
2681
|
+
.subscribe(options => {
|
|
2671
2682
|
// Create the object outside the zone so its events don't trigger change detection.
|
|
2672
2683
|
// We'll bring it back in inside the `MapEventManager` only for the events that the
|
|
2673
2684
|
// user has subscribed to.
|
|
@@ -2755,9 +2766,9 @@ class MapRectangle {
|
|
|
2755
2766
|
}
|
|
2756
2767
|
}
|
|
2757
2768
|
}
|
|
2758
|
-
MapRectangle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
2759
|
-
MapRectangle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
2760
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
2769
|
+
MapRectangle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapRectangle, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2770
|
+
MapRectangle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapRectangle, selector: "map-rectangle", inputs: { options: "options", bounds: "bounds" }, outputs: { boundsChanged: "boundsChanged", rectangleClick: "rectangleClick", rectangleDblclick: "rectangleDblclick", rectangleDrag: "rectangleDrag", rectangleDragend: "rectangleDragend", rectangleDragstart: "rectangleDragstart", rectangleMousedown: "rectangleMousedown", rectangleMousemove: "rectangleMousemove", rectangleMouseout: "rectangleMouseout", rectangleMouseover: "rectangleMouseover", rectangleMouseup: "rectangleMouseup", rectangleRightclick: "rectangleRightclick" }, exportAs: ["mapRectangle"], ngImport: i0 });
|
|
2771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapRectangle, decorators: [{
|
|
2761
2772
|
type: Directive,
|
|
2762
2773
|
args: [{
|
|
2763
2774
|
selector: 'map-rectangle',
|
|
@@ -2814,7 +2825,9 @@ class MapTrafficLayer {
|
|
|
2814
2825
|
}
|
|
2815
2826
|
ngOnInit() {
|
|
2816
2827
|
if (this._map._isBrowser) {
|
|
2817
|
-
this._combineOptions()
|
|
2828
|
+
this._combineOptions()
|
|
2829
|
+
.pipe(take(1))
|
|
2830
|
+
.subscribe(options => {
|
|
2818
2831
|
// Create the object outside the zone so its events don't trigger change detection.
|
|
2819
2832
|
this._ngZone.runOutsideAngular(() => {
|
|
2820
2833
|
this.trafficLayer = new google.maps.TrafficLayer(options);
|
|
@@ -2839,7 +2852,9 @@ class MapTrafficLayer {
|
|
|
2839
2852
|
}));
|
|
2840
2853
|
}
|
|
2841
2854
|
_watchForAutoRefreshChanges() {
|
|
2842
|
-
this._combineOptions()
|
|
2855
|
+
this._combineOptions()
|
|
2856
|
+
.pipe(takeUntil(this._destroyed))
|
|
2857
|
+
.subscribe(options => {
|
|
2843
2858
|
this._assertInitialized();
|
|
2844
2859
|
this.trafficLayer.setOptions(options);
|
|
2845
2860
|
});
|
|
@@ -2855,9 +2870,9 @@ class MapTrafficLayer {
|
|
|
2855
2870
|
}
|
|
2856
2871
|
}
|
|
2857
2872
|
}
|
|
2858
|
-
MapTrafficLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
2859
|
-
MapTrafficLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
2860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
2873
|
+
MapTrafficLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapTrafficLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2874
|
+
MapTrafficLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapTrafficLayer, selector: "map-traffic-layer", inputs: { autoRefresh: "autoRefresh" }, exportAs: ["mapTrafficLayer"], ngImport: i0 });
|
|
2875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapTrafficLayer, decorators: [{
|
|
2861
2876
|
type: Directive,
|
|
2862
2877
|
args: [{
|
|
2863
2878
|
selector: 'map-traffic-layer',
|
|
@@ -2893,9 +2908,9 @@ class MapTransitLayer extends MapBaseLayer {
|
|
|
2893
2908
|
}
|
|
2894
2909
|
}
|
|
2895
2910
|
}
|
|
2896
|
-
MapTransitLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
2897
|
-
MapTransitLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
2898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
2911
|
+
MapTransitLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapTransitLayer, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2912
|
+
MapTransitLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapTransitLayer, selector: "map-transit-layer", exportAs: ["mapTransitLayer"], usesInheritance: true, ngImport: i0 });
|
|
2913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapTransitLayer, decorators: [{
|
|
2899
2914
|
type: Directive,
|
|
2900
2915
|
args: [{
|
|
2901
2916
|
selector: 'map-transit-layer',
|
|
@@ -3004,9 +3019,9 @@ class MapHeatmapLayer {
|
|
|
3004
3019
|
}
|
|
3005
3020
|
}
|
|
3006
3021
|
}
|
|
3007
|
-
MapHeatmapLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
3008
|
-
MapHeatmapLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-
|
|
3009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
3022
|
+
MapHeatmapLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapHeatmapLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3023
|
+
MapHeatmapLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.0-rc.3", type: MapHeatmapLayer, selector: "map-heatmap-layer", inputs: { data: "data", options: "options" }, exportAs: ["mapHeatmapLayer"], usesOnChanges: true, ngImport: i0 });
|
|
3024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapHeatmapLayer, decorators: [{
|
|
3010
3025
|
type: Directive,
|
|
3011
3026
|
args: [{
|
|
3012
3027
|
selector: 'map-heatmap-layer',
|
|
@@ -3049,8 +3064,8 @@ const COMPONENTS = [
|
|
|
3049
3064
|
];
|
|
3050
3065
|
class GoogleMapsModule {
|
|
3051
3066
|
}
|
|
3052
|
-
GoogleMapsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
3053
|
-
GoogleMapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0-
|
|
3067
|
+
GoogleMapsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: GoogleMapsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3068
|
+
GoogleMapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: GoogleMapsModule, declarations: [GoogleMap,
|
|
3054
3069
|
MapBaseLayer,
|
|
3055
3070
|
MapBicyclingLayer,
|
|
3056
3071
|
MapCircle,
|
|
@@ -3081,8 +3096,8 @@ GoogleMapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
3081
3096
|
MapTrafficLayer,
|
|
3082
3097
|
MapTransitLayer,
|
|
3083
3098
|
MapHeatmapLayer] });
|
|
3084
|
-
GoogleMapsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0-
|
|
3085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
3099
|
+
GoogleMapsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: GoogleMapsModule });
|
|
3100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: GoogleMapsModule, decorators: [{
|
|
3086
3101
|
type: NgModule,
|
|
3087
3102
|
args: [{
|
|
3088
3103
|
declarations: COMPONENTS,
|
|
@@ -3122,9 +3137,9 @@ class MapDirectionsService {
|
|
|
3122
3137
|
});
|
|
3123
3138
|
}
|
|
3124
3139
|
}
|
|
3125
|
-
MapDirectionsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
3126
|
-
MapDirectionsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0-
|
|
3127
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
3140
|
+
MapDirectionsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapDirectionsService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3141
|
+
MapDirectionsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapDirectionsService, providedIn: 'root' });
|
|
3142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapDirectionsService, decorators: [{
|
|
3128
3143
|
type: Injectable,
|
|
3129
3144
|
args: [{ providedIn: 'root' }]
|
|
3130
3145
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
@@ -3157,9 +3172,9 @@ class MapGeocoder {
|
|
|
3157
3172
|
});
|
|
3158
3173
|
}
|
|
3159
3174
|
}
|
|
3160
|
-
MapGeocoder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-
|
|
3161
|
-
MapGeocoder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0-
|
|
3162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-
|
|
3175
|
+
MapGeocoder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapGeocoder, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3176
|
+
MapGeocoder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapGeocoder, providedIn: 'root' });
|
|
3177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ngImport: i0, type: MapGeocoder, decorators: [{
|
|
3163
3178
|
type: Injectable,
|
|
3164
3179
|
args: [{ providedIn: 'root' }]
|
|
3165
3180
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
@@ -3172,6 +3187,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-next.15",
|
|
|
3172
3187
|
* found in the LICENSE file at https://angular.io/license
|
|
3173
3188
|
*/
|
|
3174
3189
|
|
|
3190
|
+
/**
|
|
3191
|
+
* @license
|
|
3192
|
+
* Copyright Google LLC All Rights Reserved.
|
|
3193
|
+
*
|
|
3194
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
3195
|
+
* found in the LICENSE file at https://angular.io/license
|
|
3196
|
+
*/
|
|
3197
|
+
|
|
3175
3198
|
/**
|
|
3176
3199
|
* Generated bundle index. Do not edit.
|
|
3177
3200
|
*/
|