On Sep 25, 2:58 pm, Rob <[EMAIL PROTECTED]> wrote: > Hi, > > Using Mike's tutorials I've been able to get everything done I wanted, > but one last hurdle. > > When I add in custom icons, I cannot click on the icons to make the > info window show up. They do show up when I click on the links below > the map I have created. > > The code is here:http://dblquik.harvestmanager.net/mx/hm.asp?id=locations > > Any help greatly appreciated!!
The syntax you are using to create your GMarker is incorrect: http://code.google.com/apis/maps/documentation/reference.html#GMarker var marker = new GMarker(point, dqicon, {title:scrtip}); should be: var marker = new GMarker(point, {icon:dqicon, title:scrtip}); The third argument to the GMarker constructor is the "inert" flag, which make it so clicks don't work... -- Larry --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
