PHPackages                             ronanguilloux/geocodertoolkit - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. ronanguilloux/geocodertoolkit

ActiveLibrary

ronanguilloux/geocodertoolkit
=============================

Geo-related utils &amp; toolkit PHP library, build atop the Geocoder lib

2131[1 issues](https://github.com/ronanguilloux/GeocoderToolkit/issues)PHP

Since Nov 3Pushed 13y ago1 watchersCompare

[ Source](https://github.com/ronanguilloux/GeocoderToolkit)[ Packagist](https://packagist.org/packages/ronanguilloux/geocodertoolkit)[ RSS](/packages/ronanguilloux-geocodertoolkit/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

GeocoderToolkit
===============

[](#geocodertoolkit)

**GeocoderToolkit** is a geo-related utils &amp; toolkit PHP library, build atop the [Geocoder](https://github.com/willdurand/Geocoder) library

It provides simple tools such as

- distant geopoints coordinates calculation (bounding box angles, etc.)
- other geo-related tools to come (all contributors will be fully credited!)

[![Build Status](https://camo.githubusercontent.com/bed1e31e0918a54e966ca8b71577821096fbd948a35c4ee0f870fe3418ac37b6/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f726f6e616e6775696c6c6f75782f47656f636f646572546f6f6c6b69742e706e673f6272616e63683d6d6173746572)](http://travis-ci.org/ronanguilloux/GeocoderToolkit)

Installation
------------

[](#installation)

GeocoderToolkit is not a stand-alone library: it assumes strong dependency with the [Geocoder](https://github.com/willdurand/Geocoder) PHP library.

The recommended way to install Geocoder is through [composer](http://getcomposer.org).

Just create a `composer.json` file for your project:

```
{
     "require": {
        "php": ">=5.3.0",
        "willdurand/geocoder": "master-dev",
        "ronanguilloux/geocodertoolkit": "master-dev"
    }
}
```

And run these two commands to install it:

```
$ wget http://getcomposer.org/composer.phar
$ php composer.phar install
```

Now you can add the autoloader, and you will have access to the library:

```
