url:http://www.99payday.com/Google_Map_of_Locations.html?zipcode=95621
Map works fine in Google Chrome and Firefox. But when I access the
page in Internet Explorer 7 on Vista and XP I get an error " invalid
argument line 90 character 18". The page looks for a parameter called
zipcode which is then passed into showAddress function:
function showAddress(address) {
if (geocoder) {
geocoder.getLatLng(
address,
function(point) {
if (!point) {
alert(address + " not found");
} else {
map.setCenter(point, 13);
var marker = new GMarker(point);
map.addOverlay(marker);
marker.openInfoWindowHtml(address);
}
}
);
}
}
I'm guessing that It doesn't like something about the
geocoder.getLatLng function. Anyone have any ideas?
Matthew Sturdevant
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---