Well I found the issue:
I have the method:
function setStartingLatLng(address, lat, lng, zoom)
{
geo.getLatLng(address, function(point)
{
if (point != null)
{
lat = point.lat();
lng = point.lng();
map.setCenter(new GLatLng(lat, lng), zoom);
}
else
{
map.setCenter(new GLatLng(lat, lng), zoom);
}
}
);
}
which sets the start point to an address, or to a lat/lng point. It
seems that it doesn't like this function any more.
When I manually set the map.setCenter and not hit this function, it
works great. However, this function causes it to bomb. And I can now
see why. i had a global var called geo, and inside another function I
created a variable called geo. Different engines probably handled this
differently, which is why the issue was only found in IE7.
Time to look at this method again.
Thanks for the help guys. (Making the test page helped me find this).
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---