On May 19, 10:33 pm, Nick <[email protected]> wrote: > Does anyone know why my Custom Marker Won't display? I am sure it's a > small syntax thing - But I can't find it.
Advice: if you must post code, put the link first. > Link:http://cf.bigfatdesigns.com/clients/natss/map-3.cfm var marker = new GMarker(point, {title:tip}, icons[icontype]); You're mixing two different ways of defining a marker. Try just one, with all your options inside the options object: var marker = new GMarker(point, {title:tip, icon:icons[icontype]}); 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 -~----------~----~----~----~------~----~------~--~---
