Twitter Reverse geocode

Reverse geocode

To get a list of places near a position, you can do as:

// Make the call to the API
TwitterReverseGeocodeResponse response = service.Geo.ReverseGeocode(55.708089, 9.536034);

// Iterate through the tweets
foreach (TwitterPlace place in response.Body.Result.Places) {

    Console.WriteLine(place.FullName);
    Console.WriteLine(place.Type);
    Console.WriteLine(place.Id);
    Console.WriteLine(place.Name);
    Console.WriteLine();

}