Map<String, String> params = new HashMap<String, String>();
params.put(QueryParam.LATITUDE, Double.toString(latitude));
params.put(QueryParam.LONGITUDE, Double.toString(longitude));
LocationSearchFeed feed = createInstagramObject(Verbs.GET, LocationSearchFeed.class, Methods.LOCATIONS_SEARCH,
params);
return feed;
}