You can't do things like this: oThis._map.setCenter(new GLatLng(point.Ye, point.Ua), 16)
because the internal obfuscated symbols change their names every time a new version of the API is pushed. I guess is some version .Ye and .Ua were the internal names for the properties returned by .lat() and .lng(), but they're not now. In this particular case, "point" already is a GLatLng, so you can rewrite it as: oThis._map.setCenter(point, 16) -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
