Android如何使用FourSquare APi实现位置全局搜索?

时间:2015-04-30 07:41:17

标签: android google-maps-android-api-2 foursquare

我想在android中实现世界的位置搜索。我正在使用foursquare api。我总是靠近场地。 我使用下面的代码

VenuesCriteria v = new VenuesCriteria();
v.setLocation(getLocationObj());
v.setRadius(1000);
v.setQuery(newText);
v.setQuantity(Integer.MAX_VALUE);

v.setIntent(VenuesCriteriaIntent.BROWSE);
async.getVenuesNearby(this, v);

你能取悦我吗。

0 个答案:

没有答案