Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been reading https://developers.google.com/maps/documentation/javascript/overlays for a while now and I can't seem to get a custom icon for my map working.

Here is my javascript:

var simplerweb = new google.maps.LatLng(55.977046,-3.197118);
var marker;
var map;

function initialize() {
    var myOpts = {
        center:    simplerweb,  
        zoom:      15,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOpts);
    marker = new google.maps.Marker({
        map:        map,
        draggable:  true,
        animation:  google.maps.Animation.DROP,
        position:   simplerweb
    });
    google.maps.event.addListener(marker, 'click', toggleBounce);
}

function toggleBounce() {
  if (marker.getAnimation() != null) {
    marker.setAnimation(null);
  } else {
    marker.setAnimation(google.maps.Animation.BOUNCE);
  }
}

Any pointers for a complete beginner with gmaps?

share|improve this question

1 Answer

up vote 4 down vote accepted
marker = new google.maps.Marker({
    map:map,
    draggable:true,
    animation: google.maps.Animation.DROP,
    position: simplerweb,
    icon: 'http://cdn.com/my-custom-icon.png'
  });
share|improve this answer
Doesn't work, what am I doing wrong? pastebin.com/Vk001VJM – andy Apr 29 '12 at 22:54
cdn.com/my-custom-icon.png is just a dummy address, you should use a valid address to a valid image, also you have declared two times the same identical var "simplerweb" you can remove one of it – aSeptik Apr 29 '12 at 23:00
I feel like an idiot now. Can the image be hosted anymore? – andy Apr 29 '12 at 23:13
you means anywhere? yes the image can be hosted wherever you want! – aSeptik Apr 29 '12 at 23:15
Great, thanks for the help septik! – andy Apr 29 '12 at 23:26
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.