francescotrucchia/geo-adapter

Library to use different geolocalization adapter

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 14

Watchers: 1

Forks: 5

Open Issues: 0

pkg:composer/francescotrucchia/geo-adapter

v1.0.0 2013-11-15 01:08 UTC

This package is not auto-updated.

Last update: 2026-01-28 07:50:12 UTC


README

With GeoAdapter you can find a location from an address. A location is a object with latitude and longitude attribute. Location object implements a method can calculate distance between two location.

<?php

require_once __DIR__ . '/../vendor/autoload.php';

$search = 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;

This software is released under GPL license.