This line
   pushLatLngToCrm(results[0].geometry.location.Na,
results[0].geometry.location.Oa);
looks like someone is trying to use undocumented API internal
properties, it's very bad practice as it will (has?) break
unexpectedly when the property names inevitably change,

Use documented properties or methods, results[0].geometry.location is
a LatLng object
http://code.google.com/apis/maps/documentation/javascript/services.html#GeocodingResults
so you use the documented methods
http://code.google.com/apis/maps/documentation/javascript/reference.html#LatLng
to extract e.g. latitude by
   results[0].geometry.location.lat()

Apart from that, the attached HTML listing doesn't help much due to
missing dependencies.  Link to you live page?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to