This is a floating point rounding error introduced by our longitude wrapping function.
If you're absolutely sure that your latitude is between -90 and 90, and longitude between -180 and 180, you could pass true to the noWrap parameter of the LatLng constructor and the wrapping function will be bypassed. http://code.google.com/apis/maps/documentation/javascript/reference.html#LatLng Be wary, though - if your coordinates are outside of these bounds, some API features will break. Why does this matter? As Rossko says, realistically this is not an issue in terms of error on the earth's surface. Chris -- 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.
