Google Map Marker pulse animation?

后端 未结 4 1237
不思量自难忘°
不思量自难忘° 2021-01-30 15:08

I wonder is there any way to make Google Map Marker to pulse? Like here: http://plebeosaur.us/etc/map/

4条回答
  •  [愿得一人]
    2021-01-30 15:32

    SVG here can make wonders, if you don't mind IE/Edge compatibility.

    I've created this blue pulsating dot (adapted from this one).

    Warning: animation not playing on Edge 18 (but should in Edge 75).

    Simply replace the image in the marker properties:

    var marker = new google.maps.Marker({
      //...
      icon: {
        url: 'path/to/your/image.svg',
        //...
      },
    });
    

提交回复
热议问题