Latest | 2.0.2 |
---|---|
Homepage | https://github.com/Darshanptl7500/GPlaceAPI |
License | MIT |
Platforms | ios 7.0, requires ARC |
Dependencies | AFNetworking |
Authors |
GPlaceAPI is an open-source iOS Objective-C library for fetching Google Places API using simple blocks based API callbacks.
Its Main purpose it to use Google Places API requests with ease in a less lines of code.
This includes following:
- Place Search
- Nearby Search (search places in a specified area)
- Text Search (search places based on a search string)
- Place Details (get more comprehensive information about a place)
- Place Autocomplete (Get place predictions based on the search text)
- Query Autocomplete(Get on-the-fly geographic query predictions)
Screens
How To Use
CocoaPods
GPlaceAPI is available in cocoapods. you can add it in your project as below
pod "GPlaceAPI", "~> 2.0.2"
Manual (or using git submodule)
- Implement AFNetworking 2.0
- GPlaceAPI uses AFNetworking 2.0 so, you need to add AFNetworking in your project
- Download source files from this repository
- Add all files from GPlaceAPI folder to your project’s target
Usage
You can take a look at the detailed example usage project GPlaceAPIExample/GPlaceAPIExample.xcodeproj.
1. Import GPlaceAPI files in your implementation file
#import "GPHeader.h"
2. Setup Google Place API key
In order to communicate with a Google Places API, you must first generate your own API key. Please take a look at Introduction – Google Places API.
You must provide API key to a GPlaceAPI
before making any request using it.
//Open "AppDelegate.h" and set your API_KEY
[[GPlaceAPISetup sharedInstance] setApi_Key:@"SET_API_KEY"];
3. Making a request & get Resonse
CLLocationCoordinate2D location = CLLocationCoordinate2DMake(51.501103,-0.124565);
GPPlaceSearchRequest *request =[[GPPlaceSearchRequest alloc] initWithLocationCoordinate:location];
request.radius = 5000;
[request doFetchPlaces:^(GPPlaceSearchResponse *response, NSError *error) {
if(!error){
if(response.status == GPRequestStatusOK) {
// Access place results by below model
GPResult *result =response.results[0];
NSLog(@"%@",result.name);
}
}
}];
Please check Google Places API documentation for request and resonse. you can search all request parameters and get response of all objects mentioned in Google Places API documentation.
Wiki
You can check more about library in wiki
Compatibility
- iOS 7.0+
TODOs
- Add Example project on how to use this library.
- Write test cases for this library.
Android
- Check GooglePlaceLib for android
Contact
GPlaceAPI is developed by Darshan Patel. Please email to let me know you how you are using this library and anything related to this library.
Contributing and notes
- If you like this library, please consider giving it a Github star.
Pull requests are very welcome expecting you follow few rules:
- Document your changes in a code comments and Git commit message
- Please do make sure your changes don’t trouble with any existing code
Version history
1.0 Initial Pre-release
- Added first version.
1.0.1 Pre-release
- Simplified way of adding API_Key
- Bug fix for price level enum
2.0 Public – release
- Added photo_url in GPPhoto class
2.0.2 Public – release
- Remove warning of NSInteger conversion
License
The MIT License (MIT)
Copyright (c) 2015 Darshan Patel
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Latest podspec
{ "name": "GPlaceAPI", "version": "2.0.2", "summary": "GPlaceAPI is an open-source iOS Objective-C library for fetching Goolge Place API using simple blocks based API callbacks", "description": "tttt Its Main purpose it to use Google Places API requests with ease in a less lines of code. nntttt This includes following:nntttt - [Place Search]ntttt - Nearby Search (search places withing a specified area)ntttt - Text Search (search places based on a search string)ntttt - [Place Details] (get more comprehensive information about a place)ntttt - [Place Autocomplete] (Get place predictions based on the search text)ntttt - [Query Autocomplete](Get on-the-fly geographic query predictions)n", "homepage": "https://github.com/Darshanptl7500/GPlaceAPI", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "Darshan Patel": "[email protected]" }, "platforms": { "ios": "7.0" }, "source": { "git": "https://github.com/Darshanptl7500/GPlaceAPI.git", "tag": "2.0.2" }, "source_files": "GPlaceAPI/*.{h,m}", "requires_arc": true, "dependencies": { "AFNetworking": [ "~> 2.2" ] } }
Sun, 06 Mar 2016 14:50:03 +0000