Re: [twitter-dev] Twitter - ATOM - google:location tag

2011-05-06 Thread Arnaud Meunier
Hey Pavithra, Assuming you're using PHP SimpleXML, you could get the location element from the google Namespace with something like: $namespaces = $result-getNameSpaces(true); $google = $result-children($namespaces['google']); echo $google-location; Arnaud / @rno http://twitter.com/rno On

[twitter-dev] Twitter - ATOM - google:location tag

2011-05-05 Thread Pavithra
Hello, My friend and I are working on an app that extracts tweets in and around a location and displays the tweets as text as well as on the map. We are getting tweets with geo location but are wondering how to extract the data in the google:location tag. We are using PHP to display the tweets.