1. Go to this page and download the library: Download yurcrm/geo-client 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/ */
yurcrm / geo-client example snippets
$geoClient = new GeoClient(URL_сервиса);
$town = $geoClient->getTownById(id_города, params);
$geoClient = new GeoClient(URL_сервиса);
$region = $geoClient->getRegionById(id_региона, params);
$geoClient = new GeoClient(URL_сервиса);
// $townId - id города, для которого хотим получить соседей
$region = $geoClient->getClosestTowns($townId, $radius = 100, $limit = 10);
$geoClient = new GeoClient(URL_сервиса);
$region = $geoClient->getTownsByIds([1,2,56,777], params);