@angular/google-maps 13.1.0-next.0 → 13.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/esm2020/google-map/google-map.mjs +9 -4
- package/esm2020/google-maps-module.mjs +5 -5
- package/esm2020/map-base-layer.mjs +4 -4
- package/esm2020/map-bicycling-layer/map-bicycling-layer.mjs +4 -4
- package/esm2020/map-circle/map-circle.mjs +4 -4
- package/esm2020/map-directions-renderer/map-directions-renderer.mjs +4 -4
- package/esm2020/map-directions-renderer/map-directions-service.mjs +4 -4
- package/esm2020/map-geocoder/map-geocoder.mjs +4 -4
- package/esm2020/map-ground-overlay/map-ground-overlay.mjs +4 -4
- package/esm2020/map-heatmap-layer/map-heatmap-layer.mjs +4 -4
- package/esm2020/map-info-window/map-info-window.mjs +4 -4
- package/esm2020/map-kml-layer/map-kml-layer.mjs +4 -4
- package/esm2020/map-marker/map-marker.mjs +4 -4
- package/esm2020/map-marker-clusterer/map-marker-clusterer.mjs +4 -4
- package/esm2020/map-polygon/map-polygon.mjs +4 -4
- package/esm2020/map-polyline/map-polyline.mjs +4 -4
- package/esm2020/map-rectangle/map-rectangle.mjs +4 -4
- package/esm2020/map-traffic-layer/map-traffic-layer.mjs +4 -4
- package/esm2020/map-transit-layer/map-transit-layer.mjs +4 -4
- package/fesm2015/google-maps.mjs +63 -58
- package/fesm2015/google-maps.mjs.map +1 -1
- package/fesm2020/google-maps.mjs +63 -58
- package/fesm2020/google-maps.mjs.map +1 -1
- package/google-map/google-map.d.ts +3 -1
- package/package.json +1 -1
package/fesm2020/google-maps.mjs
CHANGED
|
@@ -96,6 +96,8 @@ class GoogleMap {
|
|
|
96
96
|
/** Width of the map. Set this to `null` if you'd like to control the width through CSS. */
|
|
97
97
|
this.width = DEFAULT_WIDTH;
|
|
98
98
|
this._options = DEFAULT_OPTIONS;
|
|
99
|
+
/** Event emitted when the map is initialized. */
|
|
100
|
+
this.mapInitialized = new EventEmitter();
|
|
99
101
|
/**
|
|
100
102
|
* See
|
|
101
103
|
* https://developers.google.com/maps/documentation/javascript/events#auth-errors
|
|
@@ -251,6 +253,7 @@ class GoogleMap {
|
|
|
251
253
|
this.googleMap = new google.maps.Map(this._mapEl, this._combineOptions());
|
|
252
254
|
});
|
|
253
255
|
this._eventManager.setTarget(this.googleMap);
|
|
256
|
+
this.mapInitialized.emit(this.googleMap);
|
|
254
257
|
}
|
|
255
258
|
}
|
|
256
259
|
ngOnDestroy() {
|
|
@@ -426,9 +429,9 @@ class GoogleMap {
|
|
|
426
429
|
}
|
|
427
430
|
}
|
|
428
431
|
}
|
|
429
|
-
GoogleMap.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
430
|
-
GoogleMap.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
432
|
+
GoogleMap.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: GoogleMap, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Component });
|
|
433
|
+
GoogleMap.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.1", 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 });
|
|
434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: GoogleMap, decorators: [{
|
|
432
435
|
type: Component,
|
|
433
436
|
args: [{
|
|
434
437
|
selector: 'google-map',
|
|
@@ -452,6 +455,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.3", ng
|
|
|
452
455
|
type: Input
|
|
453
456
|
}], options: [{
|
|
454
457
|
type: Input
|
|
458
|
+
}], mapInitialized: [{
|
|
459
|
+
type: Output
|
|
455
460
|
}], authFailure: [{
|
|
456
461
|
type: Output
|
|
457
462
|
}], boundsChanged: [{
|
|
@@ -528,9 +533,9 @@ class MapBaseLayer {
|
|
|
528
533
|
_setMap() { }
|
|
529
534
|
_unsetMap() { }
|
|
530
535
|
}
|
|
531
|
-
MapBaseLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
532
|
-
MapBaseLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
536
|
+
MapBaseLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapBaseLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
537
|
+
MapBaseLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", type: MapBaseLayer, selector: "map-base-layer", exportAs: ["mapBaseLayer"], ngImport: i0 });
|
|
538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapBaseLayer, decorators: [{
|
|
534
539
|
type: Directive,
|
|
535
540
|
args: [{
|
|
536
541
|
selector: 'map-base-layer',
|
|
@@ -564,9 +569,9 @@ class MapBicyclingLayer extends MapBaseLayer {
|
|
|
564
569
|
}
|
|
565
570
|
}
|
|
566
571
|
}
|
|
567
|
-
MapBicyclingLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
568
|
-
MapBicyclingLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
572
|
+
MapBicyclingLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapBicyclingLayer, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
573
|
+
MapBicyclingLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", type: MapBicyclingLayer, selector: "map-bicycling-layer", exportAs: ["mapBicyclingLayer"], usesInheritance: true, ngImport: i0 });
|
|
574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapBicyclingLayer, decorators: [{
|
|
570
575
|
type: Directive,
|
|
571
576
|
args: [{
|
|
572
577
|
selector: 'map-bicycling-layer',
|
|
@@ -784,9 +789,9 @@ class MapCircle {
|
|
|
784
789
|
}
|
|
785
790
|
}
|
|
786
791
|
}
|
|
787
|
-
MapCircle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
788
|
-
MapCircle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
789
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
792
|
+
MapCircle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapCircle, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
793
|
+
MapCircle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", 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 });
|
|
794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapCircle, decorators: [{
|
|
790
795
|
type: Directive,
|
|
791
796
|
args: [{
|
|
792
797
|
selector: 'map-circle',
|
|
@@ -933,9 +938,9 @@ class MapDirectionsRenderer {
|
|
|
933
938
|
}
|
|
934
939
|
}
|
|
935
940
|
}
|
|
936
|
-
MapDirectionsRenderer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
937
|
-
MapDirectionsRenderer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
938
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
941
|
+
MapDirectionsRenderer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapDirectionsRenderer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
942
|
+
MapDirectionsRenderer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", type: MapDirectionsRenderer, selector: "map-directions-renderer", inputs: { directions: "directions", options: "options" }, outputs: { directionsChanged: "directionsChanged" }, exportAs: ["mapDirectionsRenderer"], usesOnChanges: true, ngImport: i0 });
|
|
943
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapDirectionsRenderer, decorators: [{
|
|
939
944
|
type: Directive,
|
|
940
945
|
args: [{
|
|
941
946
|
selector: 'map-directions-renderer',
|
|
@@ -1088,9 +1093,9 @@ class MapGroundOverlay {
|
|
|
1088
1093
|
}
|
|
1089
1094
|
}
|
|
1090
1095
|
}
|
|
1091
|
-
MapGroundOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
1092
|
-
MapGroundOverlay.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
1093
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
1096
|
+
MapGroundOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapGroundOverlay, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1097
|
+
MapGroundOverlay.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", type: MapGroundOverlay, selector: "map-ground-overlay", inputs: { url: "url", bounds: "bounds", clickable: "clickable", opacity: "opacity" }, outputs: { mapClick: "mapClick", mapDblclick: "mapDblclick" }, exportAs: ["mapGroundOverlay"], ngImport: i0 });
|
|
1098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapGroundOverlay, decorators: [{
|
|
1094
1099
|
type: Directive,
|
|
1095
1100
|
args: [{
|
|
1096
1101
|
selector: 'map-ground-overlay',
|
|
@@ -1272,9 +1277,9 @@ class MapInfoWindow {
|
|
|
1272
1277
|
}
|
|
1273
1278
|
}
|
|
1274
1279
|
}
|
|
1275
|
-
MapInfoWindow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
1276
|
-
MapInfoWindow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
1277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
1280
|
+
MapInfoWindow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapInfoWindow, deps: [{ token: GoogleMap }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1281
|
+
MapInfoWindow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", 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 });
|
|
1282
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapInfoWindow, decorators: [{
|
|
1278
1283
|
type: Directive,
|
|
1279
1284
|
args: [{
|
|
1280
1285
|
selector: 'map-info-window',
|
|
@@ -1431,9 +1436,9 @@ class MapKmlLayer {
|
|
|
1431
1436
|
}
|
|
1432
1437
|
}
|
|
1433
1438
|
}
|
|
1434
|
-
MapKmlLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
1435
|
-
MapKmlLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
1436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
1439
|
+
MapKmlLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapKmlLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1440
|
+
MapKmlLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", type: MapKmlLayer, selector: "map-kml-layer", inputs: { options: "options", url: "url" }, outputs: { kmlClick: "kmlClick", defaultviewportChanged: "defaultviewportChanged", statusChanged: "statusChanged" }, exportAs: ["mapKmlLayer"], ngImport: i0 });
|
|
1441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapKmlLayer, decorators: [{
|
|
1437
1442
|
type: Directive,
|
|
1438
1443
|
args: [{
|
|
1439
1444
|
selector: 'map-kml-layer',
|
|
@@ -1797,9 +1802,9 @@ class MapMarker {
|
|
|
1797
1802
|
}
|
|
1798
1803
|
}
|
|
1799
1804
|
}
|
|
1800
|
-
MapMarker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
1801
|
-
MapMarker.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
1802
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
1805
|
+
MapMarker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapMarker, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1806
|
+
MapMarker.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", 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 });
|
|
1807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapMarker, decorators: [{
|
|
1803
1808
|
type: Directive,
|
|
1804
1809
|
args: [{
|
|
1805
1810
|
selector: 'map-marker',
|
|
@@ -2191,9 +2196,9 @@ class MapMarkerClusterer {
|
|
|
2191
2196
|
}
|
|
2192
2197
|
}
|
|
2193
2198
|
}
|
|
2194
|
-
MapMarkerClusterer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
2195
|
-
MapMarkerClusterer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.
|
|
2196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
2199
|
+
MapMarkerClusterer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapMarkerClusterer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2200
|
+
MapMarkerClusterer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.1", 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 });
|
|
2201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapMarkerClusterer, decorators: [{
|
|
2197
2202
|
type: Component,
|
|
2198
2203
|
args: [{
|
|
2199
2204
|
selector: 'map-marker-clusterer',
|
|
@@ -2415,9 +2420,9 @@ class MapPolygon {
|
|
|
2415
2420
|
}
|
|
2416
2421
|
}
|
|
2417
2422
|
}
|
|
2418
|
-
MapPolygon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
2419
|
-
MapPolygon.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
2420
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
2423
|
+
MapPolygon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapPolygon, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2424
|
+
MapPolygon.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", 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 });
|
|
2425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapPolygon, decorators: [{
|
|
2421
2426
|
type: Directive,
|
|
2422
2427
|
args: [{
|
|
2423
2428
|
selector: 'map-polygon',
|
|
@@ -2606,9 +2611,9 @@ class MapPolyline {
|
|
|
2606
2611
|
}
|
|
2607
2612
|
}
|
|
2608
2613
|
}
|
|
2609
|
-
MapPolyline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
2610
|
-
MapPolyline.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
2611
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
2614
|
+
MapPolyline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapPolyline, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2615
|
+
MapPolyline.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", 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 });
|
|
2616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapPolyline, decorators: [{
|
|
2612
2617
|
type: Directive,
|
|
2613
2618
|
args: [{
|
|
2614
2619
|
selector: 'map-polyline',
|
|
@@ -2817,9 +2822,9 @@ class MapRectangle {
|
|
|
2817
2822
|
}
|
|
2818
2823
|
}
|
|
2819
2824
|
}
|
|
2820
|
-
MapRectangle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
2821
|
-
MapRectangle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
2822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
2825
|
+
MapRectangle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapRectangle, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2826
|
+
MapRectangle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", 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 });
|
|
2827
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapRectangle, decorators: [{
|
|
2823
2828
|
type: Directive,
|
|
2824
2829
|
args: [{
|
|
2825
2830
|
selector: 'map-rectangle',
|
|
@@ -2921,9 +2926,9 @@ class MapTrafficLayer {
|
|
|
2921
2926
|
}
|
|
2922
2927
|
}
|
|
2923
2928
|
}
|
|
2924
|
-
MapTrafficLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
2925
|
-
MapTrafficLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
2926
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
2929
|
+
MapTrafficLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapTrafficLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2930
|
+
MapTrafficLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", type: MapTrafficLayer, selector: "map-traffic-layer", inputs: { autoRefresh: "autoRefresh" }, exportAs: ["mapTrafficLayer"], ngImport: i0 });
|
|
2931
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapTrafficLayer, decorators: [{
|
|
2927
2932
|
type: Directive,
|
|
2928
2933
|
args: [{
|
|
2929
2934
|
selector: 'map-traffic-layer',
|
|
@@ -2959,9 +2964,9 @@ class MapTransitLayer extends MapBaseLayer {
|
|
|
2959
2964
|
}
|
|
2960
2965
|
}
|
|
2961
2966
|
}
|
|
2962
|
-
MapTransitLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
2963
|
-
MapTransitLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
2964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
2967
|
+
MapTransitLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapTransitLayer, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2968
|
+
MapTransitLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", type: MapTransitLayer, selector: "map-transit-layer", exportAs: ["mapTransitLayer"], usesInheritance: true, ngImport: i0 });
|
|
2969
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapTransitLayer, decorators: [{
|
|
2965
2970
|
type: Directive,
|
|
2966
2971
|
args: [{
|
|
2967
2972
|
selector: 'map-transit-layer',
|
|
@@ -3073,9 +3078,9 @@ class MapHeatmapLayer {
|
|
|
3073
3078
|
}
|
|
3074
3079
|
}
|
|
3075
3080
|
}
|
|
3076
|
-
MapHeatmapLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
3077
|
-
MapHeatmapLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.
|
|
3078
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
3081
|
+
MapHeatmapLayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapHeatmapLayer, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3082
|
+
MapHeatmapLayer.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.1", type: MapHeatmapLayer, selector: "map-heatmap-layer", inputs: { data: "data", options: "options" }, exportAs: ["mapHeatmapLayer"], usesOnChanges: true, ngImport: i0 });
|
|
3083
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapHeatmapLayer, decorators: [{
|
|
3079
3084
|
type: Directive,
|
|
3080
3085
|
args: [{
|
|
3081
3086
|
selector: 'map-heatmap-layer',
|
|
@@ -3118,8 +3123,8 @@ const COMPONENTS = [
|
|
|
3118
3123
|
];
|
|
3119
3124
|
class GoogleMapsModule {
|
|
3120
3125
|
}
|
|
3121
|
-
GoogleMapsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
3122
|
-
GoogleMapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.
|
|
3126
|
+
GoogleMapsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: GoogleMapsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3127
|
+
GoogleMapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: GoogleMapsModule, declarations: [GoogleMap,
|
|
3123
3128
|
MapBaseLayer,
|
|
3124
3129
|
MapBicyclingLayer,
|
|
3125
3130
|
MapCircle,
|
|
@@ -3150,8 +3155,8 @@ GoogleMapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
3150
3155
|
MapTrafficLayer,
|
|
3151
3156
|
MapTransitLayer,
|
|
3152
3157
|
MapHeatmapLayer] });
|
|
3153
|
-
GoogleMapsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.
|
|
3154
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
3158
|
+
GoogleMapsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: GoogleMapsModule });
|
|
3159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: GoogleMapsModule, decorators: [{
|
|
3155
3160
|
type: NgModule,
|
|
3156
3161
|
args: [{
|
|
3157
3162
|
declarations: COMPONENTS,
|
|
@@ -3191,9 +3196,9 @@ class MapDirectionsService {
|
|
|
3191
3196
|
});
|
|
3192
3197
|
}
|
|
3193
3198
|
}
|
|
3194
|
-
MapDirectionsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
3195
|
-
MapDirectionsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.
|
|
3196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
3199
|
+
MapDirectionsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapDirectionsService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3200
|
+
MapDirectionsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapDirectionsService, providedIn: 'root' });
|
|
3201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapDirectionsService, decorators: [{
|
|
3197
3202
|
type: Injectable,
|
|
3198
3203
|
args: [{ providedIn: 'root' }]
|
|
3199
3204
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
@@ -3226,9 +3231,9 @@ class MapGeocoder {
|
|
|
3226
3231
|
});
|
|
3227
3232
|
}
|
|
3228
3233
|
}
|
|
3229
|
-
MapGeocoder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.
|
|
3230
|
-
MapGeocoder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.
|
|
3231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.
|
|
3234
|
+
MapGeocoder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapGeocoder, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3235
|
+
MapGeocoder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapGeocoder, providedIn: 'root' });
|
|
3236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.1", ngImport: i0, type: MapGeocoder, decorators: [{
|
|
3232
3237
|
type: Injectable,
|
|
3233
3238
|
args: [{ providedIn: 'root' }]
|
|
3234
3239
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|