Hello, I've been searching for answers on this everywhere, apologies
if it has been posted on here already but I cannot find a discussion
about this.

I am grabbing the coords from a twitter feed and inputting them into a
google map plugin on a website, below is the code I'm using...

The problem is that only rarely the point on the map actually matches
the location where the user tweeted from, some times being up to half
a mile out.

I'm trying to figure out at what stage the coordinates become wrong.
Is it the tweeting iPhone/android that has an unreliable GPS? is it
twitter? is it google maps?

Any help or advice would be much appreciated.

Many thanks

--

$json = file_get_contents('http://api.twitter.com/1/users/show/
taimmobile.json');
$data = json_decode($json, false);
$lat = $data->status->geo->coordinates[0];
$lon = $data->status->geo->coordinates[1];

echo SGMprintmap($lat,$lon,"18","TERRAIN",null,null);


(SGMprintmap is from a plug for WP:
https://svn.wp-plugins.org/simple-google-map/trunk/simple-google-map.php)

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

Reply via email to