GeoLocation for PHP offers convenient and easy to use methods for geocoding, geolocation and geometry functions in PHP.
This library is forked from anthonymartin/GeoLocation and is actively maintained
Features include:
- Retrieve bounding box coordinates. Just define a coordinate and the size of your bounding box.
- calculate distances between geopoints/coordinates
- Solve point in polygon problems (identify whether a given point is within the bounds of a polygon)
composer require toneflix-code/php-geo-location
<?php
use ToneflixCode\PhpGeoLocation\GeoPoint;
$geopointA = new GeoPoint(40.5187154, -74.4120953);
$geopointB = new GeoPoint(40.65, -73.95);
$geopointB = $geopointA->distanceTo($geopointB, 'miles');
In order to use this method, you'll need to register at Google Cloud Console and enable the Geocoding API
<?php
use ToneflixCode\PhpGeoLocation\GeoPoint;
$geopoint = GeoPoint::fromAddress('New York, NY 10001', 'google-api-key-goes-here');
$latitude = $geopoint->getLatitude();
$longitude = $geopoint->getLongitude();
<?php
use ToneflixCode\PhpGeoLocation\GeoPoint;
$geopointA = new GeoPoint(40.5187154, -74.4120953);
$boundingBox = $geopointA->boundingBox(3, 'miles');
$boundingBox->getMaxLatitude();
$boundingBox->getMaxLongitude();
$boundingBox->getMinLatitude();
$boundingBox->getMinLongitude();
<?php
use ToneflixCode\PhpGeoLocation\GeoPoint;
use ToneflixCode\PhpGeoLocation\Polygon;
$geopointA = new GeoPoint(40.5187154, -74.4120953);
$polygon = Polygon::fromArray(array(
[$lat1, $lon1],
[$lat2, $lon2],
[$lat3, $lon3],
[$lat4, $lon4]
));
if ($geopointA->inPolygon($polygon)) {
echo "GeoPoint is in Polygon!";
}
<?php
use ToneflixCode\PhpGeoLocation\GeoPoint;
$geopointA = new GeoPoint(40.5187154, -74.4120953);
$boundingBox = $geopointA->boundingBox(5, 'mi');
$polygon = $boundingBox->toPolygon();
and now you can check if the GeoPoint is the polygon / bounding box:
if ($geopointA->inPolygon($polygon)) {
echo "GeoPoint is in Polygon / Bounding Box!";
}
Run the following from the project directory:
./vendor/bin/phpunit tests
This is a collection of PHP classes written by Anthony Martin. Some of GeoLocation.php was derived from Java code that was originally published at
http://JanMatuschek.de/LatitudeLongitudeBoundingCoordinates.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Copyright (c) 2019 Anthony Martin
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.