Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are developing application for iOS. That allow nature lovers to post recommendations for locations.

If location/place does not exist then add to Places API and add recommendation.

Any suggestions? Which Places API we should use?

Thanks, Adil

share|improve this question

closed as not constructive by Igy, Janak Nirmal, Stefan Gehrig, MaVRoSCy, Simon Lehmann Nov 21 '12 at 8:27

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

I think that if you want the largest places API you should connect it to Facebook or Google places. Google places has a limit for searching places but if you don't expect too many users you should be okay. As for adding new places, this too is allowed by the Google places API by making a place report.

If you want to get into the realm of reviews and other things you should probably go for your own database where users can post to. Because this is not possible with any of the API's

Good luck!

Google places api

share|improve this answer

The Google Places API supports User Place Reports for adding places.

It also supports the returning of review data from a Place Details request. However does not support adding reviews, you would have to store Users Added reviews/recommendations locally. If you think being adding reviews would be a good feature you can file a Place API - Feature Request.

Another feature you might find useful would be Place Bumps, this allows users to bump the rank of places so that they rank higher in subsequent Places Search requests.

The Google Places API is initially limited to 1000 queries per day and 100,000 queries per day if you enable billing on your project for verification. You can then also apply for a additional quota by following the instructions on the uplift page of the documentation.

share|improve this answer

I think you should give Foursquare's Venues Platform a closer look for the following reasons.

  1. The Foursquare database is already user generated, meaning that it's set up to let a user add a new venue already. I've had pending edits get trapped in Google's mysterious review process for months, but a call to /venues/add is reflected in the Foursquare database immediately.
  2. Foursquare already has a category for outdoor places that is already populated with a LOT of well known and obscure outdoor spots. For example, you can see here the top outdoors spots in the Berkshires in Massachusetts. You can get at a list of a bunch of these using the venue search API.
  3. The use case of adding recommendations for users is already built right in to Foursquare via tips. For example, you can see on one of the outdoor venues from 2 a few tips about how nice a place is and how to get to it. You can get those tips and pull them in to your app using the Tips API and you can use the same API to push tips from your users or from the app itself back into Foursquare to bring in more traffic to your app.

So, I think you should take a look at the Foursquare developer docs and see if it would work for you. An added bonus is that Facebook now accepts Foursquare venue IDs instead of their own, so you will even be able to keep Facebook integration if you want to integrate with their platform.

share|improve this answer

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