Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use Google Maps API (Places API) in my iPhone app to find locations near me?

I have a couple of questions regarding using Google maps API, especially the Places API in my iPhone application.

  1. Can I use Places API in my iPhone app and still release the app as a paid app? Could I release my app as free if I am unable to use these APIs in a paid app?

  2. Is there an example for figuring out store locations around user's current location using Places API? For example if the user types "Groceries" in the app, I would like to show all the Store that sell groceries near the user's location.

Thanks!

like image 538
Malolan Santhanakrishnan Avatar asked Nov 15 '22 02:11

Malolan Santhanakrishnan


1 Answers

1) Taken from their terms and conditions:

If your Maps API Implementation is deployed internally or you are charging for use of your Maps API Implementation, please contact the Google Maps API Premier sales team for more information.

2) Location is a required parameter in any search request:

http://code.google.com/apis/maps/documentation/places/#PlaceSearchRequests

like image 110
DanS Avatar answered Dec 28 '22 07:12

DanS