> I can see the marker image constructor is what I need to insert but > can you tell me where to place this? All I would like is a simple png > file to replace the default marker image for all the points on my map > which I intend to load from the xml file.
You could have a guess at this ; * Since all the markers will be alike, you only need to define the icon once. * Clearly that needs to be done before the markers proper are defined. * But you need to be sure the map API is loaded before trying to define icons. So, one approach would be to define the icon somewhere at the beginning of your markers-creating-from XML section of code, but before the loop that sets up each individual marker. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
