On Mar 31, 8:08 am, JPC <[email protected]> wrote: > Does anyone know how to remove an infowindow's pointer? > > Here's our site...http://www.lternet.edu/sites1/ > > We'd like for the window/balloon to popup directly over the marker, > which I think we can figure out via it's anchor position, but then the > pointer is pointing out in no man's land. > > Thanks for any help.
Your map doesn't work in IE. You have a div named map (<div id="map") and a map element named Map (<map name="Map">). IE considers name and id synonyms, and doesn't use case, so those two elements break the map. You need to change them to be unique. The Google Maps API infoWindow doesn't let you remove the stem, but there are third party substitutes. Mike Williams wrote a couple: Part 10 Using EWindows - an alternative to the API info window http://econym.org.uk/gmap/ewindows.htm Part 14 Using EBubbles - another alternative to the API info window http://econym.org.uk/gmap/ebubble.htm -- Larry -- 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.
