@angular/google-maps 19.0.0-next.4 → 19.0.0-next.5
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
CHANGED
|
@@ -3426,6 +3426,26 @@ class MapAdvancedMarker {
|
|
|
3426
3426
|
* https://developers.google.com/maps/documentation/javascript/reference/advanced-markers#AdvancedMarkerElement.click
|
|
3427
3427
|
*/
|
|
3428
3428
|
this.mapClick = this._eventManager.getLazyEmitter('click');
|
|
3429
|
+
/**
|
|
3430
|
+
* This event is fired when the AdvancedMarkerElement is double-clicked.
|
|
3431
|
+
*/
|
|
3432
|
+
this.mapDblclick = this._eventManager.getLazyEmitter('dblclick');
|
|
3433
|
+
/**
|
|
3434
|
+
* This event is fired when the mouse moves out of the AdvancedMarkerElement.
|
|
3435
|
+
*/
|
|
3436
|
+
this.mapMouseout = this._eventManager.getLazyEmitter('mouseout');
|
|
3437
|
+
/**
|
|
3438
|
+
* This event is fired when the mouse moves over the AdvancedMarkerElement.
|
|
3439
|
+
*/
|
|
3440
|
+
this.mapMouseover = this._eventManager.getLazyEmitter('mouseover');
|
|
3441
|
+
/**
|
|
3442
|
+
* This event is fired when the mouse button is released over the AdvancedMarkerElement.
|
|
3443
|
+
*/
|
|
3444
|
+
this.mapMouseup = this._eventManager.getLazyEmitter('mouseup');
|
|
3445
|
+
/**
|
|
3446
|
+
* This event is fired when the AdvancedMarkerElement is right-clicked.
|
|
3447
|
+
*/
|
|
3448
|
+
this.mapRightclick = this._eventManager.getLazyEmitter('rightclick');
|
|
3429
3449
|
/**
|
|
3430
3450
|
* This event is repeatedly fired while the user drags the AdvancedMarkerElement.
|
|
3431
3451
|
* https://developers.google.com/maps/documentation/javascript/reference/advanced-markers#AdvancedMarkerElement.drag
|
|
@@ -3528,7 +3548,7 @@ class MapAdvancedMarker {
|
|
|
3528
3548
|
}
|
|
3529
3549
|
}
|
|
3530
3550
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.3", ngImport: i0, type: MapAdvancedMarker, deps: [{ token: GoogleMap }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3531
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.3", type: MapAdvancedMarker, isStandalone: true, selector: "map-advanced-marker", inputs: { title: "title", position: "position", content: "content", gmpDraggable: "gmpDraggable", options: "options", zIndex: "zIndex" }, outputs: { mapClick: "mapClick", mapDrag: "mapDrag", mapDragend: "mapDragend", mapDragstart: "mapDragstart", markerInitialized: "markerInitialized" }, exportAs: ["mapAdvancedMarker"], usesOnChanges: true, ngImport: i0 }); }
|
|
3551
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.3", 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" }, exportAs: ["mapAdvancedMarker"], usesOnChanges: true, ngImport: i0 }); }
|
|
3532
3552
|
}
|
|
3533
3553
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.3", ngImport: i0, type: MapAdvancedMarker, decorators: [{
|
|
3534
3554
|
type: Directive,
|
|
@@ -3551,6 +3571,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.3",
|
|
|
3551
3571
|
type: Input
|
|
3552
3572
|
}], mapClick: [{
|
|
3553
3573
|
type: Output
|
|
3574
|
+
}], mapDblclick: [{
|
|
3575
|
+
type: Output
|
|
3576
|
+
}], mapMouseout: [{
|
|
3577
|
+
type: Output
|
|
3578
|
+
}], mapMouseover: [{
|
|
3579
|
+
type: Output
|
|
3580
|
+
}], mapMouseup: [{
|
|
3581
|
+
type: Output
|
|
3582
|
+
}], mapRightclick: [{
|
|
3583
|
+
type: Output
|
|
3554
3584
|
}], mapDrag: [{
|
|
3555
3585
|
type: Output
|
|
3556
3586
|
}], mapDragend: [{
|