Creating Animated Google Maps Markers with CSS and JavaScript

Creating Animated Google Maps Markers with CSS and JavaScript

one, Introduction

The Google Maps API allows web developers to create an exceptional user experience with just a few lines of code through its amazing built-in functionality. However, it also has one significant shortcoming - a lack of flexibility and creativity in map markers.

Sure, you can add custom marker images, tooltips, and corresponding labels, but all of these are static and interactive in a text-oriented way. In addition, there is no standard way to create interactive markers that respond to user actions.

I simply couldn't stop there, so I set out to find a way to create a truly unique mapping.

This article is about showing you a truly unique way to create a marker map. Specifically, I'm going to show you how to use CSS3 animation techniques to create a marker map. With this technique, you can make the marker dance, wiggle, and hide until it jumps off the screen in an elegant way.

If the user hovers over the marker, clicks it, or uses a toggle outside the map, you will be able to use any CSS animation to "revive" it. This article will introduce you to a simple strategy that you can use to animate markers in any of your projects. For your reference, two other examples - Ryan Connolly (http://jsfiddle.net/ryanoc/86Ejf/) and Felipe Figueroa (http://bl.ocks.org/amenadiel/f4e5bd78b214ff081254) both use a similar approach to this.

2. Basic knowledge

You only need to follow the steps below to add CSS animation support to the markers on your map.

1. First Step

Add an image to your marker. Here is how you specify the image in code:

  1. var catIcon = {
  2.  
  3. url: myImageURLhere,
  4.  
  5. //state your size parameters in terms of pixels
  6.  
  7. size : new google.maps.Size( 70 , 60 ),
  8.  
  9. scaledSize: new google.maps.Size( 70 , 60 ),
  10.  
  11. origin: new google.maps.Point( 0,0 )
  12.  
  13. }

(II) Step 2

Set the parameter optimized to false in your tag declaration. This will allow you to render each tag as a separate DOM element:

  1. var marker = new google.maps.Marker({
  2.  
  3. position :latLng,
  4.  
  5. map: map,
  6.  
  7. // set the icon as catIcon declared above  
  8.  
  9. icon: catIcon,
  10.  
  11. // must use optimized false for CSS
  12.  
  13. optimized: false
  14.  
  15. });

(III) Step 3

Create an overlayView object, which is responsible for organizing all the markers into a panel, and then you can access this overlayView object from the DOM. Please refer to the following code:

  1. var myoverlay = new google.maps.OverlayView();
  2.  
  3. myoverlay.draw = function () {
  4.  
  5. this.getPanes().markerLayer.id= 'markerLayer' ;
  6.  
  7. };
  8.  
  9. myoverlay.setMap(map);

In the line above that calls the getPanes() function, we assign an id to the marker layer so that we can use it in CSS. This overlayView object will automatically collect any markers that are not in another layer. Of course, in this case, no other layers are provided, so this object collects all markers.

(IV) Step 4

Now, we use CSS technology to add animation effects to all tags in the current layer. This animation effect can occur only once or continuously. Please refer to the following code:

  1. #marker Layer img {
  2.  
  3. animation: pulse . 5 s infinite alternate;
  4.  
  5. -webkit-animation: pulse . 5 s alternate infinite;
  6.  
  7. transform-origin: center ;
  8.  
  9. -webkit-transform-origin: center ;
  10.  
  11. }

3. More flexible settings

Using the steps above will allow you to instantly add animation to all of your markers. In this section, we'll look at a few more options to give you more control over animating your markers.

(I) External switching

For example, you want to include a legend or some clickable toggle buttons so that users can show and hide different layers, or want to make the marker have some characteristics so that it changes its corresponding CSS animation. All of these ideas are easy to implement! You just need to use a jQuery.click() handler function, please refer to the following code snippet:

  1. $( '.btn' ).click(function(){
  2.  
  3. $( '#markerLayer img' ).css( 'animation' , 'myAnimationOptionsHere' );
  4.  
  5. $( '#markerLayer img' ).css( '-webkit-animation' , 'myAnimationOptionsHere' )
  6.  
  7. })

(2) Create click/hover events

Want to add a short animation when the user hovers over a marker or clicks it? That's easy. First, create a global array to store all the markers:

  1. var allMarkers=[];

Then, when you declare each tag, add a title attribute and convert it to a string:

  1. var marker = new google.maps.Marker({
  2.  
  3. position :latLng,
  4.  
  5. map: map,
  6.  
  7. icon: catIcon,
  8.  
  9. optimized: false,
  10.  
  11. title: allMarkers.length.toString()
  12.  
  13. });

Next, add a title attribute that depends on the length of the array to create a unique id for each marker. Finally, add the marker to the array using the following code:

  1. allMarkers.push( marker );

Finally, let's look at the implementation of the click and hover events. Note: We identify each marker by using a single title identifier:

  1. google.maps.event.addListener( marker , 'click' , function() {
  2.  
  3. var thisTitle= Number(this.title);
  4.  
  5. $( '#markerLayer img' ).eq(thisTitle).css()...
  6.  
  7. })
  8.  
  9. google.maps.event.addListener( marker , 'mouseover/mouseout' , function() {
  10.  
  11. var thisTitle= Number(this.title);
  12.  
  13. $( '#markerLayer img' ).eq(thisTitle).css()...
  14.  
  15. })

(III) Use different animation effects for different tags

Let's consider a scenario where you have two separate marker types added to a map: a baseball field and a soccer field. Since both are automatically included in the overlay you create, you need a way to apply separate animations to the different markers. This is easy to do! Simply use the src attribute in your CSS and match the image URL to the respective marker. See the code below:

  1. #marker Layer img[src= '/img/myURLpath' ] {
  2.  
  3. animation: pulse . 5 s infinite alternate;
  4.  
  5. -webkit-animation: pulse . 5 s alternate infinite;
  6.  
  7. transform-origin: center ;
  8.  
  9. -webkit-transform-origin: center ;
  10.  
  11. }

IV. Summary

As a developer or designer, your main job is to build a product that your users love. In fact, they have already seen a lot of Google Maps applications in the products they use. Now it’s up to you to meet their fervent expectations!

Finally, here are a few ways to use map marker animation to suit your users’ needs:

  • If you have a marker image that simulates a real thing (such as a cat), you can use a corresponding CSS animation to simulate natural movement.
  • If your map marker images are not actual moving objects (such as counters), you can use CSS animation effects to simulate the images jumping or trembling when you click on them.
  • If you have data corresponding to each marker, you can make the markers react to that data. For example, you can mark intersections with heavy traffic: you can put a flashing exclamation mark at those locations.

Give it a try, keep at it, and your user base will surely flock to you!

Original title: Creating Animated Google Map Markers with CSS and JavaScript

[Translated by 51CTO. Please indicate the original translator and source as 51CTO.com when reprinting on partner sites]

<<:  How to achieve O&M automation and fault self-healing in the gaming industry

>>:  Android N debuts at Google I/O, name still undecided

Recommend

Five major subjects that a novice operator must go through!

A fresh graduate asked me: Han Li, I want to ente...

Why do those copywritings that imitate Durex have such poor effects?

Many copywriters like to pay attention to Durex’s...

Why do users click on your game feed ads but fail to convert?

The reason why those real users did not convert m...

Product Operation: How to cold start a product? Share 4 steps!

The product has just been launched and needs a co...

How does Baidu Promotion block malicious clicks from peers?

The SEM promotion account was maliciously clicked...

UI interface drop-down menu complete design guide

Editor's note: This article is written by sen...

Brand war under the epidemic

We all know that the former chairman of Coca-Cola...