Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

google map animate or highlight a particular marker in a bound

I have multiple markers in an bounds. I want to animate or highlight particular marker in an onclick event from html.

Map code:

var map = new google.maps.Map(document.getElementById('map-canvas'), {
  mapTypeId: google.maps.MapTypeId.ROADMAP
});
list = [
    [51.503454,-0.119562],
    [51.499633,-0.124755]
];
var bounds = new google.maps.LatLngBounds();
list.forEach(function(data, index, array){

  var marker = new google.maps.Marker({
   position: new google.maps.LatLng(list[index][0],list[index][1]),
   map: map
  });

bounds.extend(marker.position);
});
map.fitBounds(bounds);

I want to animate a particular marker in an map from a html onclick.

<button onclick="showme(0)">London Eye</button>
<button onclick="showme(1)">Palace of Westminster</button>

Js:

showme = function(index){
   //How to animate a particular marker by an index?
}
like image 326
Ramesh Murugesan Avatar asked May 26 '15 09:05

Ramesh Murugesan


People also ask

Can you highlight an area on Google Maps?

You can trace a path or highlight an area on your map by drawing lines and shapes.

How do I move a marker smoothly on Google Maps?

initialize() function creates a google Map with location Marker. transition() & moveMarker() are used to move location marker smoothly on Google Map.


1 Answers

  1. keep references to the markers:

     var markers = []; // in the global scope
    
  2. use that reference to set the animation (or the icon) of the marker.

     showme = function (index) {
         if (markers[index].getAnimation() != google.maps.Animation.BOUNCE) {
             markers[index].setAnimation(google.maps.Animation.BOUNCE);
         } else {
             markers[index].setAnimation(null);
         }
     }
    

working fiddle

code snippet:

var geocoder;
var map;
var markers = [];

function initialize() {
  map = new google.maps.Map(document.getElementById('map-canvas'), {
    mapTypeId: google.maps.MapTypeId.ROADMAP
  });
  list = [
    [51.503454, -0.119562],
    [51.499633, -0.124755]
  ];
  var bounds = new google.maps.LatLngBounds();
  list.forEach(function(data, index, array) {

    var marker = new google.maps.Marker({
      position: new google.maps.LatLng(list[index][0], list[index][1]),
      map: map
    });
    markers.push(marker);

    bounds.extend(marker.position);
  });
  map.fitBounds(bounds);

}
google.maps.event.addDomListener(window, "load", initialize);

showme = function(index) {
  if (markers[index].getAnimation() != google.maps.Animation.BOUNCE) {
    markers[index].setAnimation(google.maps.Animation.BOUNCE);
  } else {
    markers[index].setAnimation(null);
  }
}
html,
body,
#map-canvas {
  height: 500px;
  width: 500px;
  margin: 0px;
  padding: 0px
}
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk"></script>
<button onclick="showme(0)">London Eye</button>
<button onclick="showme(1)">Palace of Westminster</button>
<div id="map-canvas" style="border: 2px solid #3872ac;"></div>
like image 73
geocodezip Avatar answered Oct 04 '22 19:10

geocodezip