当我一个一个地放下每个标记时,如何在 Google Map V3 Marker 上添加自定义动画?

Posted

技术标签:

【中文标题】当我一个一个地放下每个标记时,如何在 Google Map V3 Marker 上添加自定义动画?【英文标题】:How to add custom animation on Google Map V3 Marker when I drop each marker one by one? 【发布时间】:2013-09-18 20:41:00 【问题描述】:

这是我在 Google 地图 V3 上逐个删除每个标记的简单工作示例。 当标记添加到谷歌地图时,我已经设置了 Drop Animation。

但我想自定义 Drop with Fade Animation 是否可以使用任何 javascript Stuff 或其他库?

Google 在命名空间中有这个选项 我们可以在命名空间中添加我们的自定义动画选项吗?

google.maps.Animation.DROP google.maps.Animation.BOUNCE google.maps.Animation.CUSTOM_FADE(有可能吗?)

我的谷歌地图 V3 工作代码

<!DOCTYPE html>
<html> 
<head> 
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 
  <title>Google Maps Multiple Markers</title> 
  <script src="http://maps.google.com/maps/api/js?sensor=false" 
          type="text/javascript"></script>
</head> 
<body>
  <div id="map" style="width: 500px; height: 400px;"></div>

  <script type="text/javascript">
    var locations = [
      ['Bondi Beach', -33.890542, 151.274856, 4],
      ['Coogee Beach', -33.923036, 151.259052, 5],
      ['Cronulla Beach', -34.028249, 151.157507, 3],
      ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
      ['Maroubra Beach', -33.950198, 151.259302, 1]
    ];

    var map = new google.maps.Map(document.getElementById('map'), 
      zoom: 10,
      center: new google.maps.LatLng(-33.92, 151.25),
      mapTypeId: google.maps.MapTypeId.ROADMAP
    );

    var infowindow = new google.maps.InfoWindow();

    var marker, i;

    function marker(i) 
        if (i > locations.length) return;

        var marker;

        marker = new google.maps.Marker(
            position: new google.maps.LatLng(locations[i][1], locations[i][2]),
            animation: google.maps.Animation.DROP,
            map: map
            );

        var t=setTimeout("marker("+(i+1)+")",500);
    
    marker(0);

  </script>
</body>
</html>

【问题讨论】:

animation: function(marker) // 做一些可能的事? 动画:function() 将不起作用,因为它应该是常量值。 【参考方案1】:

这是我已经走了多远。 Google Maps API 从http://maps.gstatic.com/cat_js/intl/en_us/mapfiles/api-3/14/4/%7Bcommon,map,util,marker%7D.js 内部的页面上添加了一个 CSS Keyframe sn-p

在页面内部看起来像这样

@-webkit-keyframes _gm2657 
0 % 
    -webkit-transform: translate3d(0px, 0px, 0); -webkit-animation-timing-function: ease-out;

50 % 
    -webkit-transform: translate3d(0px, -20px, 0); -webkit-animation-timing-function: ease-in ;

100 % 
    -webkit-transform: translate3d(0px, 0px, 0); -webkit-animation-timing-function: ease-out;

里面的函数被压缩成

function uJ(a, b) 
var c = [];
c[A]("@-webkit-keyframes ", b, " \\n");
K(a.b, function (a) 
    c[A](100 * a[$k], "%  ");
    c[A]("-webkit-transform: translate3d(", a[Fv][0], "px,", a[Fv][1], "px,0); ");
    c[A]("-webkit-animation-timing-function: ", a.wa, "; ");
    c[A]("\\n")
);
c[A]("\\n");
return c[Mc]("")

我现在无法再深入研究如何破解该对象。

问题是我不知道他们是如何构建关键帧动画名称的。我已经从上面的文件中得到了a.d="_gm"+l[B](1E4*l[Qb]()),但祝你好运追踪到 l[B] 是什么或 1E4*l 等于什么对象,或者 Qb 是如何定义的。

我的下一条路线是为包含 @-webkit-keyframes _gm 的脚本标签抓取 HTML 并查看提取使用的数字,然后用它来编写自己的关键帧动画,并希望谷歌地图使用你注入的 CSS自己的。

根据这些思路,我编写了一个小的 jQuery 方法来搜索所有样式属性部分匹配“_gm”的 div。

var poll;
var ntrvl = setInterval(function () 
    poll = $("div[style*=' _gm']");
    if (poll.length > 0) 
        craftNewAnimation(poll.css('-webkit-animation-name'));
        clearInterval(ntrvl);
    

, 10);

function craftNewAnimation(name) 
    console.log(name);
    var markup = ['<style>',
        '@-webkit-keyframes ' + name + ' ',
        '0% opacity: 0; ',
        '100% opacity: 1; ',
        '',
        '</style'
    ];
    $('body').append(markup.join(""));

http://jsbin.com/uJAdaJA/3/edit

由于某种原因,它不会替换它检测到的第一个动画。并且可能还有其他方法可以在没有太多黑客攻击的情况下获得这个神奇的关键帧名称。

祝你好运。

【讨论】:

辛苦了,谢谢当我换成动画时:2 会有点闪烁,我们可以在这里做平滑 使用另一个具有更好 API 的 Mapping 应用程序可能是一个更好的主意,比如 Mapbox。 我见过 Mapbox 会提供 Gmap V3 提供的所有功能吗?就像添加具有不同图像的动态标记一样。标记动画在地图上添加圆形/多边形 从圆形导航中查找值?街景 我对使用 Mapbox 的建议是基于自定义 pin drop 的特定愿望。 Mapbox API 相当健壮。查看示例,并通过 API 看看它是否符合您的要求。老实说,我只是牺牲了自定义图钉动画,或者想办法破解 Google Map API 并获得那个神奇的 css 关键帧标识符。 @Cmndo 您的推荐 (jsbin.com/uJAdaJA/3/edit) 用于 Chrome 浏览器。对于 firefox 和 explorer,只能看到反弹效果。 firefox和explorer如何使用淡入淡出效果?【参考方案2】:
    var locations = [
      ['Surat', 21.205386, 72.847301, 4],
      ['Mumbai', 19.068789, 72.870265, 5]
    ];

    var map = new google.maps.Map(document.getElementById('map'), 
      zoom: 7,
      center: new google.maps.LatLng(20.120783, 71.8517917),
      mapTypeId: google.maps.MapTypeId.ROADMAP,

    );

    var infowindow = new google.maps.InfoWindow();

    var marker, i;

    for (i = 0; i < locations.length; i++)   
      marker = new google.maps.Marker(
        position: new google.maps.LatLng(locations[i][1], locations[i][2]),
        map: map,
        draggable:true,
        animation: google.maps.Animation.DROP,
        animation: google.maps.Animation.BOUNCE,    
      );

      google.maps.event.addListener(marker, 'click', (function(marker, i) 
        return function() 
          infowindow.setContent(locations[i][0]);
          infowindow.open(map, marker);
        
      )(marker, i));
    
        var bounds = new google.maps.LatLngBounds();
// in the marker-drawing loop:
bounds.extend(pos);
// after the loop:
map.fitBounds(bounds);

【讨论】:

--> 【参考方案3】:

您可以使用Google's rich marker utility,它允许您使用 html 元素作为标记。现在你可以给元素一个你喜欢的css动画,例如使用 daneden's Animate.css.

一个例子:

    var pictureLabel = document.createElement("img");
    pictureLabel.src = YOUR_SOURCE;
    pictureLabel.width = SOME_WIDTH;
    pictureLabel.height = SOME_HEIGHT;
    // daneden even got the exact animation your'e looking for :)
    pictureLabel.className = pictureLabel.className + " animated fadeInDown";

    var marker = new RichMarker(
    position: new google.maps.LatLng(YOUR_LAT, YOUR_LNG),
        map: YOUR_MAP,
        content: pictureLabel
    );

如果你使用谷歌的丰富标记,别忘了use it's click bug fix!

【讨论】:

以上是关于当我一个一个地放下每个标记时,如何在 Google Map V3 Marker 上添加自定义动画?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Android 中使用 Google 地图按类别隐藏/显示标记组?

如何在 Meteor 中向 Google 地图添加新标记?

如何在 Google Maps API 中的两个标记之间绘制路线?

Google Maps v2 上的动画标记

如何在 iOS 中移动标记以及移动 Google 地图?

当我尝试将多个点击侦听器添加到标记 django 时,initMap 不是一个函数