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 [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.