For some reason I feel like this should be incredibly simple and i'm just slow or something.
I have a GeoRss.xml file on another server that I do not have the ability to modifty in any way. What I need to do is just load that into a map but with the logo of the site its running on used as the icon for all of the feeds instead of the default icon. I can load the georss.xml file just fine but for the life of me I cannot figure out how to change that icon. My js consists entirely of the following. What do I need to add to change the icon used from the blue dot to http://www.blawg.com/images/rss-map-icon.png ? [code] google.load("maps", "2"); var map; var geoXml; function initialize() { if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map")); geoXml = new GGeoXml("http://www.blawg.com/rss/GeoRss.xml"); map.setCenter(new GLatLng(38.4106, -100.1953), 4); map.enableScrollWheelZoom(); map.addControl(new GLargeMapControl()); map.addOverlay(geoXml); } } [/code] I'm using the word "icon" to mean the picture that shows up on the markers. Everything is perfect, functionality, size, all of it, just the picture needs changing. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
