Search code examples
rubytwitterrubygemsruby-on-rails-3.2twitter-gem

Twitter gem - how to get the latitude and longitude of a tweet?


How to get the latitude and longitude of a tweet using the Twitter gem?


Solution

  • took me a while to get my head around but like this:

    Twitter.status(227376948400230400).place.bounding_box.coordinates
    

    hope this helps.