Hi.. I am new with this stuff. so please take it easy on me:).. This should be simple, but I can't figure out the syntax to set the z- order. I looked through the archives, but am still confused. My map is at:
http://greyribboncrusade.org/members.cfm The problem is that the green markers - which are most important, are hidden in the forrest of red. Look in the Chicago area for a red marker -for example. You can see it only if you zoom way in. Here is a snippet of where I set up 2 markers: The points are numbered automatically. Where do I insert the Z-order? var point159 = new GPoint(-78.811417, 35.933651); var marker159 = new GMarker(point159,icongreen); var myhtml159 = "Preston Robert Tisch Brain Tumor Center <br />Raleigh Durham, NC<br><br><img src='http://greyribboncrusade.org/logos/ Textlogotransparent360green1.gif' width='249' height='124'><br><br><a href='http://www.cancer.duke.edu/btc/' target='_blank'>Click Me!</ a>"; map.addOverlay(marker159); GEvent.addListener(marker159, 'click', function() { marker159.openInfoWindowHtml(myhtml159); }); var point160 = new GPoint(-77.504138, 37.665356); var marker160 = new GMarker(point160,icongreen); var myhtml160 = "Brain Tumor Resource And Information Network <br / >Glen Allen, VA<br><br><br><a href='http://www.brainsite.org' target='_blank'>Click Me!</a>"; map.addOverlay(marker160); GEvent.addListener(marker160, 'click', function() { marker160.openInfoWindowHtml(myhtml160); }); --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
