> I swapped the code for defining the marker - but still the icons > remain "standard"
Not in the version that have uploaded for us to look at, that is still wrong there. Anyway, your custom icons array has two entries icons[0] = blueIcon; icons[1] = homeIcon; Your createMarker function gets passed a parameter icontype with a value of "homeIcon", and tries to look up icons["homeIcon"]. There is no such entry in the array, only [0] and [1], so the default marker gets used. You probably meant to make icons[] as an associative array. http://econym.org.uk/gmap/basic16.htm By the way, there is a lot of whitespace before your doctype (use 'view source' in a browser) which can upset some browsers. cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
