PHP code example of francescotrucchia / geo-adapter
1. Go to this page and download the library: Download francescotrucchia/geo-adapter 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/ */
francescotrucchia / geo-adapter example snippets
php
new Geo\Search();
$search->addService(new Geo\Service\OpenStreetMap\Nominatim());
$search->query('Milano');
$location_a = $search->getFirst();
$search->query('Firenze');
$location_b = $search->getFirst();
echo 'Address1: via Montenapoleone, Milano'.PHP_EOL;
echo 'Latitude: '.$location_a->getLatitude().PHP_EOL;
echo 'Longitude: '.$location_a->getLongitude().PHP_EOL.PHP_EOL;
echo 'Address2: piazza Boccolino, Osimo'.PHP_EOL;
echo 'Latitude: '.$location_b->getLatitude().PHP_EOL;
echo 'Longitude: '.$location_b->getLongitude().PHP_EOL.PHP_EOL;
$distance = $location_a->distance($location_b);
echo "Distance from Milano to Firenze is $distance Km".PHP_EOL;