> http://vendas.goodyear.com.br/homologacaonovo/testemap.asp

Your code includes -
    oThis._map.setCenter(new GLatLng(point.Ye, point.Ua), 16);
Ua appears to be a typo for Va

But WHY are you using .Ye and .Va ??  Those will change name the next
time the API changes and your page will fail.
'point' is a GLatLng.  Use the documented properties -
http://code.google.com/apis/maps/documentation/reference.html#GLatLng.lat

Better yet - as point is a GLatLng already - just use it
    oThis._map.setCenter(point , 16);

cheers, Ross K

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to