cybersthang / gmaps-utility-library-dev

Automatically exported from code.google.com/p/gmaps-utility-library-dev
0 stars 0 forks source link

createLabeledMarkerIcon doesn't set &ext=.png #64

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The labelled markers don't show background transparency in MSIE6, because
the API only tells MSIE to use AlphaImageLoader if the URL ends in ".png".

The other two icon types add "&ext=.png" to the end of the URL, but
createLabeledMarkerIcon doesn't.

The fix is to change this line in MapIconMaker 1.1
    iconUrl += "Lauto'f\\";
to
    iconUrl += "Lauto'f\\&ext=.png";

Original issue reported on code.google.com by goo...@econym.demon.co.uk on 2 Sep 2008 at 9:54

GoogleCodeExporter commented 8 years ago
Thanks, Fixed in r711 (also pushed out to release project).

Original comment by pamela.fox on 2 Sep 2008 at 5:24