@angular/google-maps 16.0.0-next.4 → 16.0.0-rc.0
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 +451 -0
- package/{esm2020 → esm2022}/google-maps-module.mjs +35 -35
- package/{esm2020 → esm2022}/map-base-layer.mjs +4 -4
- package/{esm2020 → esm2022}/map-bicycling-layer/map-bicycling-layer.mjs +4 -4
- package/esm2022/map-circle/map-circle.mjs +269 -0
- package/esm2022/map-directions-renderer/map-directions-renderer.mjs +139 -0
- package/{esm2020 → esm2022}/map-directions-renderer/map-directions-service.mjs +4 -4
- package/{esm2020 → esm2022}/map-geocoder/map-geocoder.mjs +4 -4
- package/esm2022/map-ground-overlay/map-ground-overlay.mjs +178 -0
- package/{esm2020 → esm2022}/map-heatmap-layer/map-heatmap-layer.mjs +4 -4
- package/esm2022/map-info-window/map-info-window.mjs +209 -0
- package/esm2022/map-kml-layer/map-kml-layer.mjs +171 -0
- package/esm2022/map-marker/map-marker.mjs +428 -0
- package/esm2022/map-marker-clusterer/map-marker-clusterer.mjs +406 -0
- package/esm2022/map-polygon/map-polygon.mjs +217 -0
- package/esm2022/map-polyline/map-polyline.mjs +208 -0
- package/esm2022/map-rectangle/map-rectangle.mjs +230 -0
- package/{esm2020 → esm2022}/map-traffic-layer/map-traffic-layer.mjs +4 -4
- package/{esm2020 → esm2022}/map-transit-layer/map-transit-layer.mjs +4 -4
- package/{fesm2020 → fesm2022}/google-maps.mjs +100 -130
- package/fesm2022/google-maps.mjs.map +1 -0
- package/index.d.ts +13 -13
- package/package.json +5 -11
- package/esm2020/google-map/google-map.mjs +0 -451
- package/esm2020/map-circle/map-circle.mjs +0 -269
- package/esm2020/map-directions-renderer/map-directions-renderer.mjs +0 -139
- package/esm2020/map-ground-overlay/map-ground-overlay.mjs +0 -178
- package/esm2020/map-info-window/map-info-window.mjs +0 -209
- package/esm2020/map-kml-layer/map-kml-layer.mjs +0 -171
- package/esm2020/map-marker/map-marker.mjs +0 -428
- package/esm2020/map-marker-clusterer/map-marker-clusterer.mjs +0 -406
- package/esm2020/map-polygon/map-polygon.mjs +0 -217
- package/esm2020/map-polyline/map-polyline.mjs +0 -208
- package/esm2020/map-rectangle/map-rectangle.mjs +0 -230
- package/fesm2015/google-maps.mjs +0 -3219
- package/fesm2015/google-maps.mjs.map +0 -1
- package/fesm2020/google-maps.mjs.map +0 -1
- /package/{esm2020 → esm2022}/google-maps_public_index.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/map-anchor-point.mjs +0 -0
- /package/{esm2020 → esm2022}/map-event-manager.mjs +0 -0
- /package/{esm2020 → esm2022}/map-marker-clusterer/marker-clusterer-types.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
|
@@ -1,16 +1,9 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, PLATFORM_ID, Component, ChangeDetectionStrategy, ViewEncapsulation, Inject, Input, Output, Directive, ContentChildren, NgModule, Injectable } from '@angular/core';
|
|
2
|
+
import { inject, NgZone, EventEmitter, PLATFORM_ID, Component, ChangeDetectionStrategy, ViewEncapsulation, Inject, Input, Output, Directive, ContentChildren, NgModule, Injectable } from '@angular/core';
|
|
3
3
|
import { isPlatformBrowser } from '@angular/common';
|
|
4
4
|
import { BehaviorSubject, Observable, Subject, combineLatest } from 'rxjs';
|
|
5
5
|
import { switchMap, take, map, takeUntil } from 'rxjs/operators';
|
|
6
6
|
|
|
7
|
-
/**
|
|
8
|
-
* @license
|
|
9
|
-
* Copyright Google LLC All Rights Reserved.
|
|
10
|
-
*
|
|
11
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
12
|
-
* found in the LICENSE file at https://angular.io/license
|
|
13
|
-
*/
|
|
14
7
|
/** Manages event on a Google Maps object, ensuring that events are added only when necessary. */
|
|
15
8
|
class MapEventManager {
|
|
16
9
|
/** Clears all currently-registered event listeners. */
|
|
@@ -105,7 +98,7 @@ class GoogleMap {
|
|
|
105
98
|
constructor(_elementRef, _ngZone, platformId) {
|
|
106
99
|
this._elementRef = _elementRef;
|
|
107
100
|
this._ngZone = _ngZone;
|
|
108
|
-
this._eventManager = new MapEventManager(
|
|
101
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
109
102
|
/** Height of the map. Set this to `null` if you'd like to control the height through CSS. */
|
|
110
103
|
this.height = DEFAULT_HEIGHT;
|
|
111
104
|
/** Width of the map. Set this to `null` if you'd like to control the width through CSS. */
|
|
@@ -434,10 +427,10 @@ class GoogleMap {
|
|
|
434
427
|
'Please wait for the API to load before trying to interact with it.');
|
|
435
428
|
}
|
|
436
429
|
}
|
|
430
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: GoogleMap, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
431
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0-next.7", type: GoogleMap, selector: "google-map", inputs: { height: "height", width: "width", mapTypeId: "mapTypeId", center: "center", zoom: "zoom", options: "options" }, outputs: { 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" }, 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 }); }
|
|
437
432
|
}
|
|
438
|
-
|
|
439
|
-
GoogleMap.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0-next.2", type: GoogleMap, selector: "google-map", inputs: { height: "height", width: "width", mapTypeId: "mapTypeId", center: "center", zoom: "zoom", options: "options" }, outputs: { 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" }, 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 });
|
|
440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: GoogleMap, decorators: [{
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: GoogleMap, decorators: [{
|
|
441
434
|
type: Component,
|
|
442
435
|
args: [{
|
|
443
436
|
selector: 'google-map',
|
|
@@ -538,10 +531,10 @@ class MapBaseLayer {
|
|
|
538
531
|
_initializeObject() { }
|
|
539
532
|
_setMap() { }
|
|
540
533
|
_unsetMap() { }
|
|
534
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapBaseLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
535
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", type: MapBaseLayer, selector: "map-base-layer", exportAs: ["mapBaseLayer"], ngImport: i0 }); }
|
|
541
536
|
}
|
|
542
|
-
|
|
543
|
-
MapBaseLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: MapBaseLayer, selector: "map-base-layer", exportAs: ["mapBaseLayer"], ngImport: i0 });
|
|
544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapBaseLayer, decorators: [{
|
|
537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapBaseLayer, decorators: [{
|
|
545
538
|
type: Directive,
|
|
546
539
|
args: [{
|
|
547
540
|
selector: 'map-base-layer',
|
|
@@ -574,10 +567,10 @@ class MapBicyclingLayer extends MapBaseLayer {
|
|
|
574
567
|
'Please wait for the Transit Layer to load before trying to interact with it.');
|
|
575
568
|
}
|
|
576
569
|
}
|
|
570
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapBicyclingLayer, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
571
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", type: MapBicyclingLayer, selector: "map-bicycling-layer", exportAs: ["mapBicyclingLayer"], usesInheritance: true, ngImport: i0 }); }
|
|
577
572
|
}
|
|
578
|
-
|
|
579
|
-
MapBicyclingLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: MapBicyclingLayer, selector: "map-bicycling-layer", exportAs: ["mapBicyclingLayer"], usesInheritance: true, ngImport: i0 });
|
|
580
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapBicyclingLayer, decorators: [{
|
|
573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapBicyclingLayer, decorators: [{
|
|
581
574
|
type: Directive,
|
|
582
575
|
args: [{
|
|
583
576
|
selector: 'map-bicycling-layer',
|
|
@@ -603,7 +596,7 @@ class MapCircle {
|
|
|
603
596
|
constructor(_map, _ngZone) {
|
|
604
597
|
this._map = _map;
|
|
605
598
|
this._ngZone = _ngZone;
|
|
606
|
-
this._eventManager = new MapEventManager(
|
|
599
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
607
600
|
this._options = new BehaviorSubject({});
|
|
608
601
|
this._center = new BehaviorSubject(undefined);
|
|
609
602
|
this._radius = new BehaviorSubject(undefined);
|
|
@@ -794,10 +787,10 @@ class MapCircle {
|
|
|
794
787
|
}
|
|
795
788
|
}
|
|
796
789
|
}
|
|
790
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapCircle, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
791
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", 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 }); }
|
|
797
792
|
}
|
|
798
|
-
|
|
799
|
-
MapCircle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", 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 });
|
|
800
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapCircle, decorators: [{
|
|
793
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapCircle, decorators: [{
|
|
801
794
|
type: Directive,
|
|
802
795
|
args: [{
|
|
803
796
|
selector: 'map-circle',
|
|
@@ -862,7 +855,7 @@ class MapDirectionsRenderer {
|
|
|
862
855
|
constructor(_googleMap, _ngZone) {
|
|
863
856
|
this._googleMap = _googleMap;
|
|
864
857
|
this._ngZone = _ngZone;
|
|
865
|
-
this._eventManager = new MapEventManager(
|
|
858
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
866
859
|
/**
|
|
867
860
|
* See developers.google.com/maps/documentation/javascript/reference/directions
|
|
868
861
|
* #DirectionsRenderer.directions_changed
|
|
@@ -943,10 +936,10 @@ class MapDirectionsRenderer {
|
|
|
943
936
|
}
|
|
944
937
|
}
|
|
945
938
|
}
|
|
939
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapDirectionsRenderer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
940
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", type: MapDirectionsRenderer, selector: "map-directions-renderer", inputs: { directions: "directions", options: "options" }, outputs: { directionsChanged: "directionsChanged" }, exportAs: ["mapDirectionsRenderer"], usesOnChanges: true, ngImport: i0 }); }
|
|
946
941
|
}
|
|
947
|
-
|
|
948
|
-
MapDirectionsRenderer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: MapDirectionsRenderer, selector: "map-directions-renderer", inputs: { directions: "directions", options: "options" }, outputs: { directionsChanged: "directionsChanged" }, exportAs: ["mapDirectionsRenderer"], usesOnChanges: true, ngImport: i0 });
|
|
949
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapDirectionsRenderer, decorators: [{
|
|
942
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapDirectionsRenderer, decorators: [{
|
|
950
943
|
type: Directive,
|
|
951
944
|
args: [{
|
|
952
945
|
selector: 'map-directions-renderer',
|
|
@@ -985,7 +978,7 @@ class MapGroundOverlay {
|
|
|
985
978
|
constructor(_map, _ngZone) {
|
|
986
979
|
this._map = _map;
|
|
987
980
|
this._ngZone = _ngZone;
|
|
988
|
-
this._eventManager = new MapEventManager(
|
|
981
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
989
982
|
this._opacity = new BehaviorSubject(1);
|
|
990
983
|
this._url = new BehaviorSubject('');
|
|
991
984
|
this._bounds = new BehaviorSubject(undefined);
|
|
@@ -1098,10 +1091,10 @@ class MapGroundOverlay {
|
|
|
1098
1091
|
}
|
|
1099
1092
|
}
|
|
1100
1093
|
}
|
|
1094
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapGroundOverlay, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1095
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", type: MapGroundOverlay, selector: "map-ground-overlay", inputs: { url: "url", bounds: "bounds", clickable: "clickable", opacity: "opacity" }, outputs: { mapClick: "mapClick", mapDblclick: "mapDblclick" }, exportAs: ["mapGroundOverlay"], ngImport: i0 }); }
|
|
1101
1096
|
}
|
|
1102
|
-
|
|
1103
|
-
MapGroundOverlay.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: MapGroundOverlay, selector: "map-ground-overlay", inputs: { url: "url", bounds: "bounds", clickable: "clickable", opacity: "opacity" }, outputs: { mapClick: "mapClick", mapDblclick: "mapDblclick" }, exportAs: ["mapGroundOverlay"], ngImport: i0 });
|
|
1104
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapGroundOverlay, decorators: [{
|
|
1097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapGroundOverlay, decorators: [{
|
|
1105
1098
|
type: Directive,
|
|
1106
1099
|
args: [{
|
|
1107
1100
|
selector: 'map-ground-overlay',
|
|
@@ -1138,7 +1131,7 @@ class MapInfoWindow {
|
|
|
1138
1131
|
this._googleMap = _googleMap;
|
|
1139
1132
|
this._elementRef = _elementRef;
|
|
1140
1133
|
this._ngZone = _ngZone;
|
|
1141
|
-
this._eventManager = new MapEventManager(
|
|
1134
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
1142
1135
|
this._options = new BehaviorSubject({});
|
|
1143
1136
|
this._position = new BehaviorSubject(undefined);
|
|
1144
1137
|
this._destroy = new Subject();
|
|
@@ -1287,10 +1280,10 @@ class MapInfoWindow {
|
|
|
1287
1280
|
}
|
|
1288
1281
|
}
|
|
1289
1282
|
}
|
|
1283
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapInfoWindow, deps: [{ token: GoogleMap }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1284
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", 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 }); }
|
|
1290
1285
|
}
|
|
1291
|
-
|
|
1292
|
-
MapInfoWindow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", 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 });
|
|
1293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapInfoWindow, decorators: [{
|
|
1286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapInfoWindow, decorators: [{
|
|
1294
1287
|
type: Directive,
|
|
1295
1288
|
args: [{
|
|
1296
1289
|
selector: 'map-info-window',
|
|
@@ -1329,7 +1322,7 @@ class MapKmlLayer {
|
|
|
1329
1322
|
constructor(_map, _ngZone) {
|
|
1330
1323
|
this._map = _map;
|
|
1331
1324
|
this._ngZone = _ngZone;
|
|
1332
|
-
this._eventManager = new MapEventManager(
|
|
1325
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
1333
1326
|
this._options = new BehaviorSubject({});
|
|
1334
1327
|
this._url = new BehaviorSubject('');
|
|
1335
1328
|
this._destroyed = new Subject();
|
|
@@ -1446,10 +1439,10 @@ class MapKmlLayer {
|
|
|
1446
1439
|
}
|
|
1447
1440
|
}
|
|
1448
1441
|
}
|
|
1442
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapKmlLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1443
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", type: MapKmlLayer, selector: "map-kml-layer", inputs: { options: "options", url: "url" }, outputs: { kmlClick: "kmlClick", defaultviewportChanged: "defaultviewportChanged", statusChanged: "statusChanged" }, exportAs: ["mapKmlLayer"], ngImport: i0 }); }
|
|
1449
1444
|
}
|
|
1450
|
-
|
|
1451
|
-
MapKmlLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: MapKmlLayer, selector: "map-kml-layer", inputs: { options: "options", url: "url" }, outputs: { kmlClick: "kmlClick", defaultviewportChanged: "defaultviewportChanged", statusChanged: "statusChanged" }, exportAs: ["mapKmlLayer"], ngImport: i0 });
|
|
1452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapKmlLayer, decorators: [{
|
|
1445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapKmlLayer, decorators: [{
|
|
1453
1446
|
type: Directive,
|
|
1454
1447
|
args: [{
|
|
1455
1448
|
selector: 'map-kml-layer',
|
|
@@ -1533,7 +1526,7 @@ class MapMarker {
|
|
|
1533
1526
|
constructor(_googleMap, _ngZone) {
|
|
1534
1527
|
this._googleMap = _googleMap;
|
|
1535
1528
|
this._ngZone = _ngZone;
|
|
1536
|
-
this._eventManager = new MapEventManager(
|
|
1529
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
1537
1530
|
/**
|
|
1538
1531
|
* See
|
|
1539
1532
|
* developers.google.com/maps/documentation/javascript/reference/marker#Marker.animation_changed
|
|
@@ -1812,10 +1805,10 @@ class MapMarker {
|
|
|
1812
1805
|
}
|
|
1813
1806
|
}
|
|
1814
1807
|
}
|
|
1808
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapMarker, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1809
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", 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 }); }
|
|
1815
1810
|
}
|
|
1816
|
-
|
|
1817
|
-
MapMarker.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", 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 });
|
|
1818
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapMarker, decorators: [{
|
|
1811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapMarker, decorators: [{
|
|
1819
1812
|
type: Directive,
|
|
1820
1813
|
args: [{
|
|
1821
1814
|
selector: 'map-marker',
|
|
@@ -1943,7 +1936,7 @@ class MapMarkerClusterer {
|
|
|
1943
1936
|
this._googleMap = _googleMap;
|
|
1944
1937
|
this._ngZone = _ngZone;
|
|
1945
1938
|
this._currentMarkers = new Set();
|
|
1946
|
-
this._eventManager = new MapEventManager(
|
|
1939
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
1947
1940
|
this._destroy = new Subject();
|
|
1948
1941
|
this.ariaLabelFn = () => '';
|
|
1949
1942
|
/**
|
|
@@ -2206,10 +2199,10 @@ class MapMarkerClusterer {
|
|
|
2206
2199
|
}
|
|
2207
2200
|
}
|
|
2208
2201
|
}
|
|
2202
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapMarkerClusterer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2203
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0-next.7", 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 }); }
|
|
2209
2204
|
}
|
|
2210
|
-
|
|
2211
|
-
MapMarkerClusterer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0-next.2", 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 });
|
|
2212
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapMarkerClusterer, decorators: [{
|
|
2205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapMarkerClusterer, decorators: [{
|
|
2213
2206
|
type: Component,
|
|
2214
2207
|
args: [{
|
|
2215
2208
|
selector: 'map-marker-clusterer',
|
|
@@ -2283,7 +2276,7 @@ class MapPolygon {
|
|
|
2283
2276
|
constructor(_map, _ngZone) {
|
|
2284
2277
|
this._map = _map;
|
|
2285
2278
|
this._ngZone = _ngZone;
|
|
2286
|
-
this._eventManager = new MapEventManager(
|
|
2279
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
2287
2280
|
this._options = new BehaviorSubject({});
|
|
2288
2281
|
this._paths = new BehaviorSubject(undefined);
|
|
2289
2282
|
this._destroyed = new Subject();
|
|
@@ -2430,10 +2423,10 @@ class MapPolygon {
|
|
|
2430
2423
|
}
|
|
2431
2424
|
}
|
|
2432
2425
|
}
|
|
2426
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapPolygon, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2427
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", 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 }); }
|
|
2433
2428
|
}
|
|
2434
|
-
|
|
2435
|
-
MapPolygon.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", 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 });
|
|
2436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapPolygon, decorators: [{
|
|
2429
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapPolygon, decorators: [{
|
|
2437
2430
|
type: Directive,
|
|
2438
2431
|
args: [{
|
|
2439
2432
|
selector: 'map-polygon',
|
|
@@ -2483,7 +2476,7 @@ class MapPolyline {
|
|
|
2483
2476
|
constructor(_map, _ngZone) {
|
|
2484
2477
|
this._map = _map;
|
|
2485
2478
|
this._ngZone = _ngZone;
|
|
2486
|
-
this._eventManager = new MapEventManager(
|
|
2479
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
2487
2480
|
this._options = new BehaviorSubject({});
|
|
2488
2481
|
this._path = new BehaviorSubject(undefined);
|
|
2489
2482
|
this._destroyed = new Subject();
|
|
@@ -2621,10 +2614,10 @@ class MapPolyline {
|
|
|
2621
2614
|
}
|
|
2622
2615
|
}
|
|
2623
2616
|
}
|
|
2617
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapPolyline, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2618
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", 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 }); }
|
|
2624
2619
|
}
|
|
2625
|
-
|
|
2626
|
-
MapPolyline.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", 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 });
|
|
2627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapPolyline, decorators: [{
|
|
2620
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapPolyline, decorators: [{
|
|
2628
2621
|
type: Directive,
|
|
2629
2622
|
args: [{
|
|
2630
2623
|
selector: 'map-polyline',
|
|
@@ -2674,7 +2667,7 @@ class MapRectangle {
|
|
|
2674
2667
|
constructor(_map, _ngZone) {
|
|
2675
2668
|
this._map = _map;
|
|
2676
2669
|
this._ngZone = _ngZone;
|
|
2677
|
-
this._eventManager = new MapEventManager(
|
|
2670
|
+
this._eventManager = new MapEventManager(inject(NgZone));
|
|
2678
2671
|
this._options = new BehaviorSubject({});
|
|
2679
2672
|
this._bounds = new BehaviorSubject(undefined);
|
|
2680
2673
|
this._destroyed = new Subject();
|
|
@@ -2832,10 +2825,10 @@ class MapRectangle {
|
|
|
2832
2825
|
}
|
|
2833
2826
|
}
|
|
2834
2827
|
}
|
|
2828
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapRectangle, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2829
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", 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 }); }
|
|
2835
2830
|
}
|
|
2836
|
-
|
|
2837
|
-
MapRectangle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", 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 });
|
|
2838
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapRectangle, decorators: [{
|
|
2831
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapRectangle, decorators: [{
|
|
2839
2832
|
type: Directive,
|
|
2840
2833
|
args: [{
|
|
2841
2834
|
selector: 'map-rectangle',
|
|
@@ -2936,10 +2929,10 @@ class MapTrafficLayer {
|
|
|
2936
2929
|
'Please wait for the Traffic Layer to load before trying to interact with it.');
|
|
2937
2930
|
}
|
|
2938
2931
|
}
|
|
2932
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapTrafficLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2933
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", type: MapTrafficLayer, selector: "map-traffic-layer", inputs: { autoRefresh: "autoRefresh" }, exportAs: ["mapTrafficLayer"], ngImport: i0 }); }
|
|
2939
2934
|
}
|
|
2940
|
-
|
|
2941
|
-
MapTrafficLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: MapTrafficLayer, selector: "map-traffic-layer", inputs: { autoRefresh: "autoRefresh" }, exportAs: ["mapTrafficLayer"], ngImport: i0 });
|
|
2942
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapTrafficLayer, decorators: [{
|
|
2935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapTrafficLayer, decorators: [{
|
|
2943
2936
|
type: Directive,
|
|
2944
2937
|
args: [{
|
|
2945
2938
|
selector: 'map-traffic-layer',
|
|
@@ -2974,10 +2967,10 @@ class MapTransitLayer extends MapBaseLayer {
|
|
|
2974
2967
|
'Please wait for the Transit Layer to load before trying to interact with it.');
|
|
2975
2968
|
}
|
|
2976
2969
|
}
|
|
2970
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapTransitLayer, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2971
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", type: MapTransitLayer, selector: "map-transit-layer", exportAs: ["mapTransitLayer"], usesInheritance: true, ngImport: i0 }); }
|
|
2977
2972
|
}
|
|
2978
|
-
|
|
2979
|
-
MapTransitLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: MapTransitLayer, selector: "map-transit-layer", exportAs: ["mapTransitLayer"], usesInheritance: true, ngImport: i0 });
|
|
2980
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapTransitLayer, decorators: [{
|
|
2973
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapTransitLayer, decorators: [{
|
|
2981
2974
|
type: Directive,
|
|
2982
2975
|
args: [{
|
|
2983
2976
|
selector: 'map-transit-layer',
|
|
@@ -3088,10 +3081,10 @@ class MapHeatmapLayer {
|
|
|
3088
3081
|
}
|
|
3089
3082
|
}
|
|
3090
3083
|
}
|
|
3084
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapHeatmapLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3085
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.7", type: MapHeatmapLayer, selector: "map-heatmap-layer", inputs: { data: "data", options: "options" }, exportAs: ["mapHeatmapLayer"], usesOnChanges: true, ngImport: i0 }); }
|
|
3091
3086
|
}
|
|
3092
|
-
|
|
3093
|
-
MapHeatmapLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: MapHeatmapLayer, selector: "map-heatmap-layer", inputs: { data: "data", options: "options" }, exportAs: ["mapHeatmapLayer"], usesOnChanges: true, ngImport: i0 });
|
|
3094
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapHeatmapLayer, decorators: [{
|
|
3087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapHeatmapLayer, decorators: [{
|
|
3095
3088
|
type: Directive,
|
|
3096
3089
|
args: [{
|
|
3097
3090
|
selector: 'map-heatmap-layer',
|
|
@@ -3107,13 +3100,6 @@ function isLatLngLiteral(value) {
|
|
|
3107
3100
|
return value && typeof value.lat === 'number' && typeof value.lng === 'number';
|
|
3108
3101
|
}
|
|
3109
3102
|
|
|
3110
|
-
/**
|
|
3111
|
-
* @license
|
|
3112
|
-
* Copyright Google LLC All Rights Reserved.
|
|
3113
|
-
*
|
|
3114
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
3115
|
-
* found in the LICENSE file at https://angular.io/license
|
|
3116
|
-
*/
|
|
3117
3103
|
const COMPONENTS = [
|
|
3118
3104
|
GoogleMap,
|
|
3119
3105
|
MapBaseLayer,
|
|
@@ -3133,41 +3119,41 @@ const COMPONENTS = [
|
|
|
3133
3119
|
MapHeatmapLayer,
|
|
3134
3120
|
];
|
|
3135
3121
|
class GoogleMapsModule {
|
|
3122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: GoogleMapsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3123
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.7", ngImport: i0, type: GoogleMapsModule, declarations: [GoogleMap,
|
|
3124
|
+
MapBaseLayer,
|
|
3125
|
+
MapBicyclingLayer,
|
|
3126
|
+
MapCircle,
|
|
3127
|
+
MapDirectionsRenderer,
|
|
3128
|
+
MapGroundOverlay,
|
|
3129
|
+
MapInfoWindow,
|
|
3130
|
+
MapKmlLayer,
|
|
3131
|
+
MapMarker,
|
|
3132
|
+
MapMarkerClusterer,
|
|
3133
|
+
MapPolygon,
|
|
3134
|
+
MapPolyline,
|
|
3135
|
+
MapRectangle,
|
|
3136
|
+
MapTrafficLayer,
|
|
3137
|
+
MapTransitLayer,
|
|
3138
|
+
MapHeatmapLayer], exports: [GoogleMap,
|
|
3139
|
+
MapBaseLayer,
|
|
3140
|
+
MapBicyclingLayer,
|
|
3141
|
+
MapCircle,
|
|
3142
|
+
MapDirectionsRenderer,
|
|
3143
|
+
MapGroundOverlay,
|
|
3144
|
+
MapInfoWindow,
|
|
3145
|
+
MapKmlLayer,
|
|
3146
|
+
MapMarker,
|
|
3147
|
+
MapMarkerClusterer,
|
|
3148
|
+
MapPolygon,
|
|
3149
|
+
MapPolyline,
|
|
3150
|
+
MapRectangle,
|
|
3151
|
+
MapTrafficLayer,
|
|
3152
|
+
MapTransitLayer,
|
|
3153
|
+
MapHeatmapLayer] }); }
|
|
3154
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: GoogleMapsModule }); }
|
|
3136
3155
|
}
|
|
3137
|
-
|
|
3138
|
-
GoogleMapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: GoogleMapsModule, declarations: [GoogleMap,
|
|
3139
|
-
MapBaseLayer,
|
|
3140
|
-
MapBicyclingLayer,
|
|
3141
|
-
MapCircle,
|
|
3142
|
-
MapDirectionsRenderer,
|
|
3143
|
-
MapGroundOverlay,
|
|
3144
|
-
MapInfoWindow,
|
|
3145
|
-
MapKmlLayer,
|
|
3146
|
-
MapMarker,
|
|
3147
|
-
MapMarkerClusterer,
|
|
3148
|
-
MapPolygon,
|
|
3149
|
-
MapPolyline,
|
|
3150
|
-
MapRectangle,
|
|
3151
|
-
MapTrafficLayer,
|
|
3152
|
-
MapTransitLayer,
|
|
3153
|
-
MapHeatmapLayer], exports: [GoogleMap,
|
|
3154
|
-
MapBaseLayer,
|
|
3155
|
-
MapBicyclingLayer,
|
|
3156
|
-
MapCircle,
|
|
3157
|
-
MapDirectionsRenderer,
|
|
3158
|
-
MapGroundOverlay,
|
|
3159
|
-
MapInfoWindow,
|
|
3160
|
-
MapKmlLayer,
|
|
3161
|
-
MapMarker,
|
|
3162
|
-
MapMarkerClusterer,
|
|
3163
|
-
MapPolygon,
|
|
3164
|
-
MapPolyline,
|
|
3165
|
-
MapRectangle,
|
|
3166
|
-
MapTrafficLayer,
|
|
3167
|
-
MapTransitLayer,
|
|
3168
|
-
MapHeatmapLayer] });
|
|
3169
|
-
GoogleMapsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: GoogleMapsModule });
|
|
3170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: GoogleMapsModule, decorators: [{
|
|
3156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: GoogleMapsModule, decorators: [{
|
|
3171
3157
|
type: NgModule,
|
|
3172
3158
|
args: [{
|
|
3173
3159
|
declarations: COMPONENTS,
|
|
@@ -3206,10 +3192,10 @@ class MapDirectionsService {
|
|
|
3206
3192
|
});
|
|
3207
3193
|
});
|
|
3208
3194
|
}
|
|
3195
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapDirectionsService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3196
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapDirectionsService, providedIn: 'root' }); }
|
|
3209
3197
|
}
|
|
3210
|
-
|
|
3211
|
-
MapDirectionsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapDirectionsService, providedIn: 'root' });
|
|
3212
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapDirectionsService, decorators: [{
|
|
3198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapDirectionsService, decorators: [{
|
|
3213
3199
|
type: Injectable,
|
|
3214
3200
|
args: [{ providedIn: 'root' }]
|
|
3215
3201
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
@@ -3241,30 +3227,14 @@ class MapGeocoder {
|
|
|
3241
3227
|
});
|
|
3242
3228
|
});
|
|
3243
3229
|
}
|
|
3230
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapGeocoder, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3231
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapGeocoder, providedIn: 'root' }); }
|
|
3244
3232
|
}
|
|
3245
|
-
|
|
3246
|
-
MapGeocoder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapGeocoder, providedIn: 'root' });
|
|
3247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: MapGeocoder, decorators: [{
|
|
3233
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.7", ngImport: i0, type: MapGeocoder, decorators: [{
|
|
3248
3234
|
type: Injectable,
|
|
3249
3235
|
args: [{ providedIn: 'root' }]
|
|
3250
3236
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
3251
3237
|
|
|
3252
|
-
/**
|
|
3253
|
-
* @license
|
|
3254
|
-
* Copyright Google LLC All Rights Reserved.
|
|
3255
|
-
*
|
|
3256
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
3257
|
-
* found in the LICENSE file at https://angular.io/license
|
|
3258
|
-
*/
|
|
3259
|
-
|
|
3260
|
-
/**
|
|
3261
|
-
* @license
|
|
3262
|
-
* Copyright Google LLC All Rights Reserved.
|
|
3263
|
-
*
|
|
3264
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
3265
|
-
* found in the LICENSE file at https://angular.io/license
|
|
3266
|
-
*/
|
|
3267
|
-
|
|
3268
3238
|
/**
|
|
3269
3239
|
* Generated bundle index. Do not edit.
|
|
3270
3240
|
*/
|