From bf99108b3c1c76963615da883b0df8436dba03a4 Mon Sep 17 00:00:00 2001 From: Alexander Ellis Date: Thu, 31 Aug 2017 10:51:54 -0500 Subject: [PATCH] fix(AgmInfoWindow): disableAutoPan option --- packages/core/services/managers/info-window-manager.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/services/managers/info-window-manager.ts b/packages/core/services/managers/info-window-manager.ts index 56a30a6af..721887269 100644 --- a/packages/core/services/managers/info-window-manager.ts +++ b/packages/core/services/managers/info-window-manager.ts @@ -67,6 +67,7 @@ export class InfoWindowManager { content: infoWindow.content, maxWidth: infoWindow.maxWidth, zIndex: infoWindow.zIndex, + disableAutoPan: infoWindow.disableAutoPan }; if (typeof infoWindow.latitude === 'number' && typeof infoWindow.longitude === 'number') { options.position = {lat: infoWindow.latitude, lng: infoWindow.longitude};