As i need to integrate the foursquare in my application , I have found the API and also integrate in my application. but there is some problem.

I want to show the nearest venue around me. As there is also method to show the venue

+(void)searchVenuesNearByLatitude:(NSString*)lat
                    longitude:(NSString*)lon
                   accuracyLL:(NSString*)accuracyLL
                     altitude:(NSString*)altitude
                  accuracyAlt:(NSString*)accuracyAlt
                        query:(NSString*)query
                        limit:(NSString*)limit
                       intent:(NSString*)intent
                     callback:(Foursquare2Callback)callback;

But the problem is what are the parameter need to pass for search venue which are in area of 5 KM. Can any one help me to solve this problem.

Thanks in advance,

kunal patel.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Andreas has made a good example iphone project that hosted on github I tried it and it's working very well take a look at https://github.com/anka/bw_examples/tree/master/FoursquareIntegration

Good luck

link|improve this answer
feedback

accuracyLL - this stands for accuracy Latitude Longitude.

Your foursquare library you'll see it's a wrapper for the foursquare API documented here: https://developer.foursquare.com/docs/venues/search.html

llAcc is the location accuracy in meters. For 5Km you would use 5000.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.