From 744a3ce7e00d62a259aa11209c24d9399bcfdf94 Mon Sep 17 00:00:00 2001 From: yu0kai <9986090+yu0kai@users.noreply.github.com> Date: Thu, 10 Aug 2017 19:01:17 +0800 Subject: [PATCH] added animation support to Marker --- dist/components/Marker.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dist/components/Marker.js b/dist/components/Marker.js index 2643485f..0b559944 100644 --- a/dist/components/Marker.js +++ b/dist/components/Marker.js @@ -136,7 +136,8 @@ icon = _props.icon, label = _props.label, draggable = _props.draggable, - title = _props.title; + title = _props.title, + animation = _props.animation; if (!google) { return null; @@ -153,7 +154,8 @@ icon: icon, label: label, title: title, - draggable: draggable + draggable: draggable, + animation: animation }; this.marker = new google.maps.Marker(pref); @@ -204,4 +206,4 @@ }; exports.default = Marker; -}); \ No newline at end of file +});