php-googleplaces

PHP Wrapper for the Google Places API

  • 所有者: geedmo/yamm.deprecated
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

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

$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 I’m not actively
using it or hacking on it. That being said, if there’s 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 ;)

主要指标

概览
名称与所有者geedmo/yamm.deprecated
主编程语言HTML
编程语言PHP (语言数: 2)
平台
许可证MIT License
所有者活动
创建于2013-03-22 18:09:01
推送于2019-05-07 19:40:39
最后一次提交2019-05-07 16:40:38
发布数0
用户参与
星数324
关注者数36
派生数73
提交数18
已启用问题?
问题数0
打开的问题数0
拉请求数0
打开的拉请求数2
关闭的拉请求数1
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?