From 6f7171d26b189fc4edd4edec1fcd73f65f9c7603 Mon Sep 17 00:00:00 2001
From: Ibby Hadeed <ibby93@gmail.com>
Date: Sun, 4 Dec 2016 11:55:23 -0500
Subject: [PATCH] feat(googlemaps): add markerClick and infoClick to
 MarkerOptions

addresses #844
---
 src/plugins/googlemap.ts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/plugins/googlemap.ts b/src/plugins/googlemap.ts
index 20269a5f..83b33ccb 100644
--- a/src/plugins/googlemap.ts
+++ b/src/plugins/googlemap.ts
@@ -494,6 +494,8 @@ export interface GoogleMapsMarkerOptions {
   animation?: string;
   zIndex?: number;
   disableAutoPan?: boolean;
+  markerClick?: Function;
+  infoClick?: Function;
 }
 
 /**