| Package | Description |
|---|---|
| fi.foyt.foursquare.api |
Package containing basic API functionality
|
| Modifier and Type | Method and Description |
|---|---|
Result<VenuesSearchResult> |
FoursquareApi.venuesSearch(Map<String,String> params)
Generic search which takes a map of parameters
The map is converted into parameters for the search API call with key/value pairs matching
https://developer.foursquare.com/docs/venues/search
For example:
public Response foursquareSearchNamed(@QueryParam("place") String place, @QueryParam("term") String searchTerm) {
Map
|
Result<VenuesSearchResult> |
FoursquareApi.venuesSearch(String ll,
Double llAcc,
Double alt,
Double altAcc,
String query,
Integer limit,
String intent,
String categoryId,
String url,
String providerId,
String linkedId,
Integer radius,
String near)
Returns a list of venues near the current location, optionally matching the search term.
|
Result<VenuesSearchResult> |
FoursquareApi.venuesSearch(String near,
String query,
Integer limit,
String intent,
String categoryId,
String url,
String providerId,
String linkedId)
Returns a list of venues near the current location identified by place (i.e.
|
Copyright © 2014 Foyt. All Rights Reserved.