I'm having issues with the background image and shadow of an
infowindow not loading completely, as if certain tiles are not being
loaded.

You can see an example by clicking on any of the markers on this map:
http://airparkliving.org/airparks

Results vary by browser, but normally the top and bottom right rounded
corners of the infowindow do not load and the shadow is also missing
pieces.

Here is the javascript associated with the markers and the infowindow.

function createMarker(point, airpark, id, website, length, elevation,
type) {
      var marker = new GMarker(point);
      var html = "<p style='font-size:12px;'><b>" + airpark + "</b> ("
+ id + ")<br>Field elevation: " + elevation + " ft<br>Runway length: "
+ length + " ft<br><a href='http://"; + website + "'>" + website + "</
a></p>";
      GEvent.addListener(marker, 'click', function() {
        marker.openInfoWindowHtml(html);
      });
      return marker;
    }

-- 
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.

Reply via email to