@angular/google-maps 20.0.0-next.5 → 20.0.0-next.7
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/fesm2022/google-maps.mjs +85 -65
- package/fesm2022/google-maps.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/fesm2022/google-maps.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, ElementRef, NgZone, EventEmitter, PLATFORM_ID,
|
|
2
|
+
import { inject, ElementRef, NgZone, EventEmitter, PLATFORM_ID, Output, Input, ViewEncapsulation, ChangeDetectionStrategy, Component, Directive, InjectionToken, ContentChildren, NgModule, Injectable } from '@angular/core';
|
|
3
3
|
import { isPlatformBrowser } from '@angular/common';
|
|
4
4
|
import { BehaviorSubject, Observable, Subject, combineLatest, Subscription } from 'rxjs';
|
|
5
5
|
import { switchMap, take, map, takeUntil } from 'rxjs/operators';
|
|
@@ -70,6 +70,7 @@ class MapEventManager {
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
73
|
+
/// <reference types="google.maps" preserve="true" />
|
|
73
74
|
/** default options set to the Googleplex */
|
|
74
75
|
const DEFAULT_OPTIONS = {
|
|
75
76
|
center: { lat: 37.421995, lng: -122.084092 },
|
|
@@ -471,10 +472,10 @@ class GoogleMap {
|
|
|
471
472
|
'Please wait for the API to load before trying to interact with it.');
|
|
472
473
|
}
|
|
473
474
|
}
|
|
474
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
475
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
475
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: GoogleMap, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
476
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-next.5", type: GoogleMap, isStandalone: true, selector: "google-map", inputs: { height: "height", width: "width", mapId: "mapId", 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 />', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
476
477
|
}
|
|
477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: GoogleMap, decorators: [{
|
|
478
479
|
type: Component,
|
|
479
480
|
args: [{
|
|
480
481
|
selector: 'google-map',
|
|
@@ -548,6 +549,7 @@ function coerceCssPixelValue(value) {
|
|
|
548
549
|
}
|
|
549
550
|
|
|
550
551
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
552
|
+
/// <reference types="google.maps" preserve="true" />
|
|
551
553
|
class MapBaseLayer {
|
|
552
554
|
_map = inject(GoogleMap);
|
|
553
555
|
_ngZone = inject(NgZone);
|
|
@@ -573,10 +575,10 @@ class MapBaseLayer {
|
|
|
573
575
|
_initializeObject() { }
|
|
574
576
|
_setMap() { }
|
|
575
577
|
_unsetMap() { }
|
|
576
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
577
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
578
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapBaseLayer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
579
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapBaseLayer, isStandalone: true, selector: "map-base-layer", exportAs: ["mapBaseLayer"], ngImport: i0 });
|
|
578
580
|
}
|
|
579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapBaseLayer, decorators: [{
|
|
580
582
|
type: Directive,
|
|
581
583
|
args: [{
|
|
582
584
|
selector: 'map-base-layer',
|
|
@@ -585,6 +587,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
585
587
|
}], ctorParameters: () => [] });
|
|
586
588
|
|
|
587
589
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
590
|
+
/// <reference types="google.maps" preserve="true" />
|
|
588
591
|
/**
|
|
589
592
|
* Angular component that renders a Google Maps Bicycling Layer via the Google Maps JavaScript API.
|
|
590
593
|
*
|
|
@@ -632,10 +635,10 @@ class MapBicyclingLayer {
|
|
|
632
635
|
'Please wait for the Transit Layer to load before trying to interact with it.');
|
|
633
636
|
}
|
|
634
637
|
}
|
|
635
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
636
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
638
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapBicyclingLayer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
639
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapBicyclingLayer, isStandalone: true, selector: "map-bicycling-layer", outputs: { bicyclingLayerInitialized: "bicyclingLayerInitialized" }, exportAs: ["mapBicyclingLayer"], ngImport: i0 });
|
|
637
640
|
}
|
|
638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapBicyclingLayer, decorators: [{
|
|
639
642
|
type: Directive,
|
|
640
643
|
args: [{
|
|
641
644
|
selector: 'map-bicycling-layer',
|
|
@@ -646,6 +649,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
646
649
|
}] } });
|
|
647
650
|
|
|
648
651
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
652
|
+
/// <reference types="google.maps" preserve="true" />
|
|
649
653
|
/**
|
|
650
654
|
* Angular component that renders a Google Maps Circle via the Google Maps JavaScript API.
|
|
651
655
|
* @see developers.google.com/maps/documentation/javascript/reference/polygon#Circle
|
|
@@ -869,10 +873,10 @@ class MapCircle {
|
|
|
869
873
|
}
|
|
870
874
|
}
|
|
871
875
|
}
|
|
872
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
873
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
876
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapCircle, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
877
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapCircle, isStandalone: true, 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", circleInitialized: "circleInitialized" }, exportAs: ["mapCircle"], ngImport: i0 });
|
|
874
878
|
}
|
|
875
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapCircle, decorators: [{
|
|
876
880
|
type: Directive,
|
|
877
881
|
args: [{
|
|
878
882
|
selector: 'map-circle',
|
|
@@ -915,6 +919,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
915
919
|
}] } });
|
|
916
920
|
|
|
917
921
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
922
|
+
/// <reference types="google.maps" preserve="true" />
|
|
918
923
|
/**
|
|
919
924
|
* Angular component that renders a Google Maps Directions Renderer via the Google Maps
|
|
920
925
|
* JavaScript API.
|
|
@@ -1032,10 +1037,10 @@ class MapDirectionsRenderer {
|
|
|
1032
1037
|
}
|
|
1033
1038
|
}
|
|
1034
1039
|
}
|
|
1035
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1036
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
1040
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapDirectionsRenderer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1041
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapDirectionsRenderer, isStandalone: true, selector: "map-directions-renderer", inputs: { directions: "directions", options: "options" }, outputs: { directionsChanged: "directionsChanged", directionsRendererInitialized: "directionsRendererInitialized" }, exportAs: ["mapDirectionsRenderer"], usesOnChanges: true, ngImport: i0 });
|
|
1037
1042
|
}
|
|
1038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapDirectionsRenderer, decorators: [{
|
|
1039
1044
|
type: Directive,
|
|
1040
1045
|
args: [{
|
|
1041
1046
|
selector: 'map-directions-renderer',
|
|
@@ -1052,6 +1057,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
1052
1057
|
}] } });
|
|
1053
1058
|
|
|
1054
1059
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
1060
|
+
/// <reference types="google.maps" preserve="true" />
|
|
1055
1061
|
/**
|
|
1056
1062
|
* Angular component that renders a Google Maps Ground Overlay via the Google Maps JavaScript API.
|
|
1057
1063
|
*
|
|
@@ -1209,10 +1215,10 @@ class MapGroundOverlay {
|
|
|
1209
1215
|
}
|
|
1210
1216
|
}
|
|
1211
1217
|
}
|
|
1212
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1213
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
1218
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapGroundOverlay, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1219
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapGroundOverlay, isStandalone: true, selector: "map-ground-overlay", inputs: { url: "url", bounds: "bounds", clickable: "clickable", opacity: "opacity" }, outputs: { mapClick: "mapClick", mapDblclick: "mapDblclick", groundOverlayInitialized: "groundOverlayInitialized" }, exportAs: ["mapGroundOverlay"], ngImport: i0 });
|
|
1214
1220
|
}
|
|
1215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapGroundOverlay, decorators: [{
|
|
1216
1222
|
type: Directive,
|
|
1217
1223
|
args: [{
|
|
1218
1224
|
selector: 'map-ground-overlay',
|
|
@@ -1235,6 +1241,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
1235
1241
|
}] } });
|
|
1236
1242
|
|
|
1237
1243
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
1244
|
+
/// <reference types="google.maps" preserve="true" />
|
|
1238
1245
|
/**
|
|
1239
1246
|
* Angular component that renders a Google Maps info window via the Google Maps JavaScript API.
|
|
1240
1247
|
*
|
|
@@ -1435,10 +1442,10 @@ class MapInfoWindow {
|
|
|
1435
1442
|
}
|
|
1436
1443
|
}
|
|
1437
1444
|
}
|
|
1438
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1439
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
1445
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapInfoWindow, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1446
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapInfoWindow, isStandalone: true, selector: "map-info-window", inputs: { options: "options", position: "position" }, outputs: { closeclick: "closeclick", contentChanged: "contentChanged", domready: "domready", positionChanged: "positionChanged", zindexChanged: "zindexChanged", infoWindowInitialized: "infoWindowInitialized" }, host: { styleAttribute: "display: none" }, exportAs: ["mapInfoWindow"], ngImport: i0 });
|
|
1440
1447
|
}
|
|
1441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapInfoWindow, decorators: [{
|
|
1442
1449
|
type: Directive,
|
|
1443
1450
|
args: [{
|
|
1444
1451
|
selector: 'map-info-window',
|
|
@@ -1464,6 +1471,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
1464
1471
|
}] } });
|
|
1465
1472
|
|
|
1466
1473
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
1474
|
+
/// <reference types="google.maps" preserve="true" />
|
|
1467
1475
|
/**
|
|
1468
1476
|
* Angular component that renders a Google Maps KML Layer via the Google Maps JavaScript API.
|
|
1469
1477
|
*
|
|
@@ -1612,10 +1620,10 @@ class MapKmlLayer {
|
|
|
1612
1620
|
}
|
|
1613
1621
|
}
|
|
1614
1622
|
}
|
|
1615
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1616
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
1623
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapKmlLayer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1624
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapKmlLayer, isStandalone: true, selector: "map-kml-layer", inputs: { options: "options", url: "url" }, outputs: { kmlClick: "kmlClick", defaultviewportChanged: "defaultviewportChanged", statusChanged: "statusChanged", kmlLayerInitialized: "kmlLayerInitialized" }, exportAs: ["mapKmlLayer"], ngImport: i0 });
|
|
1617
1625
|
}
|
|
1618
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapKmlLayer, decorators: [{
|
|
1619
1627
|
type: Directive,
|
|
1620
1628
|
args: [{
|
|
1621
1629
|
selector: 'map-kml-layer',
|
|
@@ -1639,6 +1647,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
1639
1647
|
const MAP_MARKER = new InjectionToken('MAP_MARKER');
|
|
1640
1648
|
|
|
1641
1649
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
1650
|
+
/// <reference types="google.maps" preserve="true" />
|
|
1642
1651
|
/**
|
|
1643
1652
|
* Default options for the Google Maps marker component. Displays a marker
|
|
1644
1653
|
* at the Googleplex.
|
|
@@ -2012,15 +2021,15 @@ class MapMarker {
|
|
|
2012
2021
|
}
|
|
2013
2022
|
}
|
|
2014
2023
|
}
|
|
2015
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2016
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
2024
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapMarker, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2025
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapMarker, isStandalone: true, 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", markerInitialized: "markerInitialized" }, providers: [
|
|
2017
2026
|
{
|
|
2018
2027
|
provide: MAP_MARKER,
|
|
2019
2028
|
useExisting: MapMarker,
|
|
2020
2029
|
},
|
|
2021
2030
|
], exportAs: ["mapMarker"], usesOnChanges: true, ngImport: i0 });
|
|
2022
2031
|
}
|
|
2023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2032
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapMarker, decorators: [{
|
|
2024
2033
|
type: Directive,
|
|
2025
2034
|
args: [{
|
|
2026
2035
|
selector: 'map-marker',
|
|
@@ -2093,6 +2102,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
2093
2102
|
}] } });
|
|
2094
2103
|
|
|
2095
2104
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
2105
|
+
/// <reference types="google.maps" preserve="true" />
|
|
2096
2106
|
/** Default options for a clusterer. */
|
|
2097
2107
|
const DEFAULT_CLUSTERER_OPTIONS = {};
|
|
2098
2108
|
/**
|
|
@@ -2464,10 +2474,10 @@ class DeprecatedMapMarkerClusterer {
|
|
|
2464
2474
|
}
|
|
2465
2475
|
}
|
|
2466
2476
|
}
|
|
2467
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2468
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
2477
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: DeprecatedMapMarkerClusterer, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2478
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-next.5", type: DeprecatedMapMarkerClusterer, isStandalone: true, selector: "deprecated-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", markerClustererInitialized: "markerClustererInitialized" }, queries: [{ propertyName: "_markers", predicate: MapMarker, descendants: true }], exportAs: ["mapMarkerClusterer"], usesOnChanges: true, ngImport: i0, template: '<ng-content/>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
2469
2479
|
}
|
|
2470
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: DeprecatedMapMarkerClusterer, decorators: [{
|
|
2471
2481
|
type: Component,
|
|
2472
2482
|
args: [{
|
|
2473
2483
|
selector: 'deprecated-map-marker-clusterer',
|
|
@@ -2528,6 +2538,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
2528
2538
|
}] } });
|
|
2529
2539
|
|
|
2530
2540
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
2541
|
+
/// <reference types="google.maps" preserve="true" />
|
|
2531
2542
|
/**
|
|
2532
2543
|
* Angular component that renders a Google Maps Polygon via the Google Maps JavaScript API.
|
|
2533
2544
|
*
|
|
@@ -2704,10 +2715,10 @@ class MapPolygon {
|
|
|
2704
2715
|
}
|
|
2705
2716
|
}
|
|
2706
2717
|
}
|
|
2707
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2708
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
2718
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapPolygon, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2719
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapPolygon, isStandalone: true, 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", polygonInitialized: "polygonInitialized" }, exportAs: ["mapPolygon"], ngImport: i0 });
|
|
2709
2720
|
}
|
|
2710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapPolygon, decorators: [{
|
|
2711
2722
|
type: Directive,
|
|
2712
2723
|
args: [{
|
|
2713
2724
|
selector: 'map-polygon',
|
|
@@ -2744,6 +2755,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
2744
2755
|
}] } });
|
|
2745
2756
|
|
|
2746
2757
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
2758
|
+
/// <reference types="google.maps" preserve="true" />
|
|
2747
2759
|
/**
|
|
2748
2760
|
* Angular component that renders a Google Maps Polyline via the Google Maps JavaScript API.
|
|
2749
2761
|
*
|
|
@@ -2913,10 +2925,10 @@ class MapPolyline {
|
|
|
2913
2925
|
}
|
|
2914
2926
|
}
|
|
2915
2927
|
}
|
|
2916
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2917
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
2928
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapPolyline, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2929
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapPolyline, isStandalone: true, 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", polylineInitialized: "polylineInitialized" }, exportAs: ["mapPolyline"], ngImport: i0 });
|
|
2918
2930
|
}
|
|
2919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2931
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapPolyline, decorators: [{
|
|
2920
2932
|
type: Directive,
|
|
2921
2933
|
args: [{
|
|
2922
2934
|
selector: 'map-polyline',
|
|
@@ -2953,6 +2965,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
2953
2965
|
}] } });
|
|
2954
2966
|
|
|
2955
2967
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
2968
|
+
/// <reference types="google.maps" preserve="true" />
|
|
2956
2969
|
/**
|
|
2957
2970
|
* Angular component that renders a Google Maps Rectangle via the Google Maps JavaScript API.
|
|
2958
2971
|
*
|
|
@@ -3140,10 +3153,10 @@ class MapRectangle {
|
|
|
3140
3153
|
}
|
|
3141
3154
|
}
|
|
3142
3155
|
}
|
|
3143
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3144
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3156
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapRectangle, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3157
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapRectangle, isStandalone: true, 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", rectangleInitialized: "rectangleInitialized" }, exportAs: ["mapRectangle"], ngImport: i0 });
|
|
3145
3158
|
}
|
|
3146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapRectangle, decorators: [{
|
|
3147
3160
|
type: Directive,
|
|
3148
3161
|
args: [{
|
|
3149
3162
|
selector: 'map-rectangle',
|
|
@@ -3182,6 +3195,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
3182
3195
|
}] } });
|
|
3183
3196
|
|
|
3184
3197
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
3198
|
+
/// <reference types="google.maps" preserve="true" />
|
|
3185
3199
|
/**
|
|
3186
3200
|
* Angular component that renders a Google Maps Traffic Layer via the Google Maps JavaScript API.
|
|
3187
3201
|
*
|
|
@@ -3259,10 +3273,10 @@ class MapTrafficLayer {
|
|
|
3259
3273
|
'Please wait for the Traffic Layer to load before trying to interact with it.');
|
|
3260
3274
|
}
|
|
3261
3275
|
}
|
|
3262
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3263
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3276
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapTrafficLayer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3277
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapTrafficLayer, isStandalone: true, selector: "map-traffic-layer", inputs: { autoRefresh: "autoRefresh" }, outputs: { trafficLayerInitialized: "trafficLayerInitialized" }, exportAs: ["mapTrafficLayer"], ngImport: i0 });
|
|
3264
3278
|
}
|
|
3265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapTrafficLayer, decorators: [{
|
|
3266
3280
|
type: Directive,
|
|
3267
3281
|
args: [{
|
|
3268
3282
|
selector: 'map-traffic-layer',
|
|
@@ -3275,6 +3289,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
3275
3289
|
}] } });
|
|
3276
3290
|
|
|
3277
3291
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
3292
|
+
/// <reference types="google.maps" preserve="true" />
|
|
3278
3293
|
/**
|
|
3279
3294
|
* Angular component that renders a Google Maps Transit Layer via the Google Maps JavaScript API.
|
|
3280
3295
|
*
|
|
@@ -3322,10 +3337,10 @@ class MapTransitLayer {
|
|
|
3322
3337
|
'Please wait for the Transit Layer to load before trying to interact with it.');
|
|
3323
3338
|
}
|
|
3324
3339
|
}
|
|
3325
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3326
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3340
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapTransitLayer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3341
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapTransitLayer, isStandalone: true, selector: "map-transit-layer", outputs: { transitLayerInitialized: "transitLayerInitialized" }, exportAs: ["mapTransitLayer"], ngImport: i0 });
|
|
3327
3342
|
}
|
|
3328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapTransitLayer, decorators: [{
|
|
3329
3344
|
type: Directive,
|
|
3330
3345
|
args: [{
|
|
3331
3346
|
selector: 'map-transit-layer',
|
|
@@ -3336,6 +3351,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
3336
3351
|
}] } });
|
|
3337
3352
|
|
|
3338
3353
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
3354
|
+
/// <reference types="google.maps" preserve="true" />
|
|
3339
3355
|
/**
|
|
3340
3356
|
* Angular directive that renders a Google Maps heatmap via the Google Maps JavaScript API.
|
|
3341
3357
|
*
|
|
@@ -3459,10 +3475,10 @@ class MapHeatmapLayer {
|
|
|
3459
3475
|
}
|
|
3460
3476
|
}
|
|
3461
3477
|
}
|
|
3462
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3463
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3478
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapHeatmapLayer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3479
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapHeatmapLayer, isStandalone: true, selector: "map-heatmap-layer", inputs: { data: "data", options: "options" }, outputs: { heatmapInitialized: "heatmapInitialized" }, exportAs: ["mapHeatmapLayer"], usesOnChanges: true, ngImport: i0 });
|
|
3464
3480
|
}
|
|
3465
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3481
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapHeatmapLayer, decorators: [{
|
|
3466
3482
|
type: Directive,
|
|
3467
3483
|
args: [{
|
|
3468
3484
|
selector: 'map-heatmap-layer',
|
|
@@ -3481,6 +3497,7 @@ function isLatLngLiteral(value) {
|
|
|
3481
3497
|
}
|
|
3482
3498
|
|
|
3483
3499
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
3500
|
+
/// <reference types="google.maps" preserve="true" />
|
|
3484
3501
|
/**
|
|
3485
3502
|
* Default options for the Google Maps marker component. Displays a marker
|
|
3486
3503
|
* at the Googleplex.
|
|
@@ -3683,15 +3700,15 @@ class MapAdvancedMarker {
|
|
|
3683
3700
|
}
|
|
3684
3701
|
}
|
|
3685
3702
|
}
|
|
3686
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3687
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3703
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapAdvancedMarker, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3704
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapAdvancedMarker, isStandalone: true, selector: "map-advanced-marker", inputs: { title: "title", position: "position", content: "content", gmpDraggable: "gmpDraggable", options: "options", zIndex: "zIndex" }, outputs: { mapClick: "mapClick", mapDblclick: "mapDblclick", mapMouseout: "mapMouseout", mapMouseover: "mapMouseover", mapMouseup: "mapMouseup", mapRightclick: "mapRightclick", mapDrag: "mapDrag", mapDragend: "mapDragend", mapDragstart: "mapDragstart", markerInitialized: "markerInitialized" }, providers: [
|
|
3688
3705
|
{
|
|
3689
3706
|
provide: MAP_MARKER,
|
|
3690
3707
|
useExisting: MapAdvancedMarker,
|
|
3691
3708
|
},
|
|
3692
3709
|
], exportAs: ["mapAdvancedMarker"], usesOnChanges: true, ngImport: i0 });
|
|
3693
3710
|
}
|
|
3694
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3711
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapAdvancedMarker, decorators: [{
|
|
3695
3712
|
type: Directive,
|
|
3696
3713
|
args: [{
|
|
3697
3714
|
selector: 'map-advanced-marker',
|
|
@@ -3738,6 +3755,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
3738
3755
|
}] } });
|
|
3739
3756
|
|
|
3740
3757
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
3758
|
+
/// <reference types="google.maps" preserve="true" />
|
|
3741
3759
|
/**
|
|
3742
3760
|
* Angular component for implementing a Google Maps Marker Clusterer.
|
|
3743
3761
|
*
|
|
@@ -3877,10 +3895,10 @@ class MapMarkerClusterer {
|
|
|
3877
3895
|
}
|
|
3878
3896
|
}
|
|
3879
3897
|
}
|
|
3880
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3881
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3898
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapMarkerClusterer, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3899
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MapMarkerClusterer, isStandalone: true, selector: "map-marker-clusterer", inputs: { renderer: "renderer", algorithm: "algorithm" }, outputs: { clusteringbegin: "clusteringbegin", clusteringend: "clusteringend", clusterClick: "clusterClick", markerClustererInitialized: "markerClustererInitialized" }, queries: [{ propertyName: "_markers", predicate: MAP_MARKER, descendants: true }], exportAs: ["mapMarkerClusterer"], usesOnChanges: true, ngImport: i0, template: '<ng-content/>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3882
3900
|
}
|
|
3883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapMarkerClusterer, decorators: [{
|
|
3884
3902
|
type: Component,
|
|
3885
3903
|
args: [{
|
|
3886
3904
|
selector: 'map-marker-clusterer',
|
|
@@ -3927,8 +3945,8 @@ const COMPONENTS = [
|
|
|
3927
3945
|
MapMarkerClusterer,
|
|
3928
3946
|
];
|
|
3929
3947
|
class GoogleMapsModule {
|
|
3930
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3931
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3948
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: GoogleMapsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3949
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.5", ngImport: i0, type: GoogleMapsModule, imports: [GoogleMap,
|
|
3932
3950
|
MapBaseLayer,
|
|
3933
3951
|
MapBicyclingLayer,
|
|
3934
3952
|
MapCircle,
|
|
@@ -3963,9 +3981,9 @@ class GoogleMapsModule {
|
|
|
3963
3981
|
MapTrafficLayer,
|
|
3964
3982
|
MapTransitLayer,
|
|
3965
3983
|
MapMarkerClusterer] });
|
|
3966
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3984
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: GoogleMapsModule });
|
|
3967
3985
|
}
|
|
3968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: GoogleMapsModule, decorators: [{
|
|
3969
3987
|
type: NgModule,
|
|
3970
3988
|
args: [{
|
|
3971
3989
|
imports: COMPONENTS,
|
|
@@ -3974,6 +3992,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4",
|
|
|
3974
3992
|
}] });
|
|
3975
3993
|
|
|
3976
3994
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
3995
|
+
/// <reference types="google.maps" preserve="true" />
|
|
3977
3996
|
/**
|
|
3978
3997
|
* Angular service that wraps the Google Maps DirectionsService from the Google Maps JavaScript
|
|
3979
3998
|
* API.
|
|
@@ -4015,15 +4034,16 @@ class MapDirectionsService {
|
|
|
4015
4034
|
}
|
|
4016
4035
|
return Promise.resolve(this._directionsService);
|
|
4017
4036
|
}
|
|
4018
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4019
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4037
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapDirectionsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4038
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapDirectionsService, providedIn: 'root' });
|
|
4020
4039
|
}
|
|
4021
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapDirectionsService, decorators: [{
|
|
4022
4041
|
type: Injectable,
|
|
4023
4042
|
args: [{ providedIn: 'root' }]
|
|
4024
4043
|
}], ctorParameters: () => [] });
|
|
4025
4044
|
|
|
4026
4045
|
// Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265
|
|
4046
|
+
/// <reference types="google.maps" preserve="true" />
|
|
4027
4047
|
/**
|
|
4028
4048
|
* Angular service that wraps the Google Maps Geocoder from the Google Maps JavaScript API.
|
|
4029
4049
|
* See developers.google.com/maps/documentation/javascript/reference/geocoder#Geocoder
|
|
@@ -4061,10 +4081,10 @@ class MapGeocoder {
|
|
|
4061
4081
|
}
|
|
4062
4082
|
return Promise.resolve(this._geocoder);
|
|
4063
4083
|
}
|
|
4064
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4065
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4084
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapGeocoder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4085
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapGeocoder, providedIn: 'root' });
|
|
4066
4086
|
}
|
|
4067
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MapGeocoder, decorators: [{
|
|
4068
4088
|
type: Injectable,
|
|
4069
4089
|
args: [{ providedIn: 'root' }]
|
|
4070
4090
|
}], ctorParameters: () => [] });
|