On Apr 22, 10:59 pm, jonharrell <[email protected]> wrote: > var marker = new GMarker(point,hicon,{title:title,clickable:true});
Have a look at the documentation for GMarker. There are two ways of defining one, and you're mixing the two methods. http://code.google.com/apis/maps/documentation/reference.html#GMarker.GMarker If you use a GMarkerOptions object (as you are) you can only have two arguments, the location and the options. If you have three, the last one determines whether the marker is clickable or not. Currently, your markers aren't clickable because that argument is not what the API is expecting. var marker = new GMarker(point, {icon:hicon,title:title,clickable:true}); Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
