I'm trying to update an old website, and I was wondering if someone
knows how to make the markers in my page show up.  right now only the
shadows are in view.

I think this is the URL I want to use to make a white medical marker.

http://chart.apis.google.com/chart?chst=d_map_pin_icon&chld=medical|FFFFFF

Right now the code is var

hospitalIcon = new GIcon();
        hospitalIcon.image =
            "http://www.pa-ipf.org.asp1-2.websitetestlink.com/images/
h2mini.png";
        hospitalIcon.shadow = "http://www.google.com/mapfiles/
shadow50.png";
        hospitalIcon.iconSize = new GSize(20, 34);
        hospitalIcon.shadowSize = new GSize(37, 34);
        hospitalIcon.iconAnchor = new GPoint(9, 34);
        hospitalIcon.infoWindowAnchor = new GPoint(9, 2);
        hospitalIcon.infoShadowAnchor = new GPoint(18, 25);
var marker = new GMarker(point, hospitalIcon);
        GEvent.addListener(marker, "click", function() {
           marker.openInfoWindowHtml(center + '<br />Principal
Investigator: ' +
                                     investigator + '<br />' +
building + "<br />" +
                                     address);
          });

This code worked about 3 ago, how can I update them in the code with
the new URL?  I'm taking over the site, and have little experience
with this..
The webpage I'm talking is http://www.pa-ipf.org/aboutPAIPF/index.asp
if you would like the source code.
Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Chart 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-chart-api?hl=en.

Reply via email to