在谷歌地图中弹出一个更低更快的图钉

时间:2015-01-14 13:10:01

标签: google-maps bounce

是否有可能使引脚反弹越来越快? 我希望pin能够稍微跳一点点。 我试过css但它不起作用。我可以编辑api弹跳吗?像持续时间或速度?

google.maps.event.addListener(marker, 'mouseover', function() {
                if (this.getAnimation() == null || typeof this.getAnimation() === 'undefined') {
                    clearTimeout(bounceTimer);

                    var that = this;

                    bounceTimer = setTimeout(function(){
                         that.setAnimation(google.maps.Animation.BOUNCE);
                    },
                    100);

                }
               //$('.gmnoprint img').addClass('anim');

            });

0 个答案:

没有答案