PHP Wrapper for the Google Places API
Find a file
Josh Sherman 6571c025f3 Updated README
Added installation instructions and included the namespace in the references.
Also reformatted the file to wrap at 80 columns. Closes #11
2014-09-13 07:59:03 -04:00
src Code cleanup, moved from tabs to spaces 2014-09-13 07:55:04 -04:00
tests Started to set up tests, added configs 2014-05-14 17:35:25 -04:00
.coveralls.yml Started to set up tests, added configs 2014-05-14 17:35:25 -04:00
.travis.yml Started to set up tests, added configs 2014-05-14 17:35:25 -04:00
composer.json Added namespace, moved library to src 2014-05-14 12:09:18 -04:00
LICENSE Added the MIT License 2014-01-12 19:47:35 -05:00
README.md Updated README 2014-09-13 07:59:03 -04:00

php-googleplaces

Build Status Coverage Status Downloads Gittip

PHP Wrapper for the Google Places API.

Origins

Simply put, when I Googled “php google places” I was presented with Google-Places---PHP-. I attempted to use it, and it was fine as I was able to make it work, but there seemed to be a huge assumption that you already knew a lot of the quirks of the Google Places API.

I did not fit into this assumption and set out to built my own wrapper with a heavy focus on sanity checking inputs, utilizing the magical parts of PHP (reads: you interact directly with the object as you would the API) and avoiding setter methods as they were put here by the devil.

I opted not to fork because I was going to change too much and I highly doubt my pull requests would have even been accepted.

Installation

The preferred installation is via composer. First add the following to your composer.json

"require": {
    "joshtronic/php-googleplaces": "dev-master"
}

Then run composer update

Usage

Getting started

require_once 'joshtronic/GooglePlaces.php';
$google_places = new joshtronic\GooglePlaces('_YOUR_API_KEY_');

Search nearby, ranked by prominence

$google_places->location = array(-33.86820, 151.1945860);
$google_places->radius   = 800;
$results                 = $google_places->nearbySearch();

Search nearby, ranked by distance

$google_places->location = array(-33.86820, 151.1945860);
$google_places->rankby   = 'distance';
$google_places->types    = 'restaurant'; // Requires keyword, name or types
$results                 = $google_places->nearbySearch();

Second page of search nearby results

$google_places->pagetoken = $results['next_page_token'];
$page2_results            = $google_places->nearbySearch();
$google_places->location = array(-33.86820, 151.1945860);
$google_places->radius   = 800;
$google_places->types    = 'restaurant'; // Requires keyword, name or types
$results                 = $google_places->radarSearch();

Place details

$google_places->reference = '#reference#'; // Reference from search results
$details                  = $google_places->details();

The Future

The project that I created this library for is now defunct so Im not actively using it or hacking on it. That being said, if theres something you want to see included or you find a bug, just open an issue or grow a pair and fork, hack and send a pull request ;)