bazo / geotools
Geo Tools for PHP 5.4
Installs: 45 243
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 2
Forks: 5
Open Issues: 3
Requires
- php: >= 5.4.0
- geokit/geokit: 0.1.0
Replaces
This package is not auto-updated.
Last update: 2024-10-26 15:32:15 UTC
README
PHP implementation of Google Route Boxer
http://gmaps-utility-library-dev.googlecode.com/svn/trunk/routeboxer/src/RouteBoxer.js
Install
add this line to your composer.json
"bazo/geotools" : "v0.1.0"
run composer install
How to use
//add all points from calculated route
$points = [
[48.167, 17.104],
[48.399, 17.586],
[48.908, 18.049],
[49.22253, 18.734436],
[48.728115, 21.255798],
];
$collection = new GeoTools\LatLngCollection($points);
$boxer = new GeoTools\RouteBoxer();
//calculate boxes with 10km distance from the line between points
$boxes = $boxer->box($collection, $distance = 10);
//boxes now contain an array of LatLngBounds
Enjoy