alexs / googleplaces
Google Places
1.0.6-stable
2017-09-21 12:14 UTC
Requires
- php: >=5.4.0
- ext-curl: *
Requires (Dev)
- php: >=7.0.0
- phpunit/phpunit: ^6.2
This package is auto-updated.
Last update: 2025-03-27 17:30:10 UTC
README
Google places
Example
<?php
$api_key = 'YOUR_API_KEY';
$language = 'ru';
$latitude = 51.509865;
$longitude = -0.118092;
$radius = 20000; // 20 km
$types = 'campground|lodging';
$Fetcher = new Fetcher($api_key, $language);
$Places = new Places($Fetcher);
$result = $Places->findNearest($latitude, $longitude, $radius, $types);
var_dump($result);