1. Go to this page and download the library: Download yoozi/lbs library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
yoozi / lbs example snippets
use Yoozi\LBS\Query\Place;
use Yoozi\LBS\Search;
$place = new Place;
$place->set('method', 'suggestion');
$place->set('q', '尚德大厦');
$place->set('region', '广州市');
$search = new Search('E4805d16520de693a3fe707cdc962045', $place);
var_dump($search->run()->toArray());