[Google Maps API v2] Wrong location in China
Hi
Ive created an application that uses Google API v2 to track cars.It
was working ok m, but now i have strange effects.One of my collegues
told me that application shows wrong location for cars in china.Its
not something drmatic, position just couple blocks away from were it
should be.does anybody have solution for my problem.
Here is the code that i use to put markers on the map.
function Mediator_AddSession(ID, Longtitude, Latitude,Description,
SpeedStr, Direction)
{
if (GBrowserIsCompatible())
{
for (var i = 0; i <= MarkersArray.length; i++ )
{
if(MarkersArray [i] == null )
{
var point = new GLatLng(Latitude,Longtitude);
MarkersArray [i] = new GMarker(point);
map.addOverlay(MarkersArray [i]);
return i;
}
}
}
return -1;
}
Thanks
--
You received this message because you are subscribed to the Google Groups "Google Maps API V2" group.
To post to this group, send email to google-maps-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home