Esempio n. 1
0
 // GET: api/TweetsByLocation
 public async Task <List <TweetInfo> > Get(int radius, float centerPointLong, float centerPointLat)
 {
     return(await DalService.GetProximateTweets(radius, new GeoPoint(centerPointLong, centerPointLat)));
 }