apptimists/laravel-spatial
Spatial data types extension for Laravel.
191
4
| Install | |
|---|---|
composer require apptimists/laravel-spatial |
|
| PHP: | >=5.6.4 |
| License: | MIT |
| Last Updated: | Nov 15, 2017 |
| Links: | GitHub · Packagist |
Maintainer: johannesberdin
Laravel Spatial extension
This package is fully untested, undocumented and unstable and is a combination of the two great packages:
Installation
Installation made super-easy with composer:
composer require apptimists/laravel-spatial
Also add the LaravelSpatial\SpatialServiceProvider::class to your config/app.php.
Requirements
Works with PostgreSQL installed PostGIS extension and MySQL at least version 5.6.
If you try using it on a shared host which is not fulfilling those requirements, change your provider.
Usage
We use the GeoJson PHP Library for describing spatial fields as GeoJSON object, e.g.:
use GeoJSON\Geometry\Point;
...
$eloquent = new MyModel();
$eloquent->location = new Point([49.7, 6.9]);
...
$eloquent->save();