Sorry, missed the latest link.. I see you're creating icons like this:
gicons["blue"] = new GIcon(); 152 gicons["blue"].image = 'http://labs.google.com/ridefinder/images/ mm_20_blue.png' ; That's just not enough information to create a valid icon, I suggest doing it this way at a minimum: gicons["blue"] = new GIcon(G_DEFAULT_ICON); This will at least give every property a value, you'll have to change some of them like the size and all, but it will be a valid icon at least. Not sure what you're doing here: 162 var marker = new GMarker(point, {gicons:[]}); That will create a marker with no icon, or at least the default icon, which is what I see. If you pass the icon to the createMarker function, you might as well use it if you want it to show up. -John Coryat http://maps.huge.info http://www.usnaviguide.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
