Reputation: 5792
I am trying to put 2 images - one over the other on a marker. But shadow is not good as the google maps can't overlay one each other.
How can I put 2 icons?
myMarker = new google.maps.Marker({
position: latLong,
map: map,
shadow: '/images/map-shadow.png',
icon: 'http://maps.google.com/mapfiles/ms/icons/green-dot.png'
});
Thanks!
Upvotes: 1
Views: 531