2017 © Pedro Peláez
 

library laravel-geographical

Easily add longitude and latitude columns to your records and use inherited functionality for calculating distances

image

malhal/laravel-geographical

Easily add longitude and latitude columns to your records and use inherited functionality for calculating distances

  • Tuesday, January 23, 2018
  • by malhal
  • Repository
  • 3 Watchers
  • 49 Stars
  • 3,340 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 1 Open issues
  • 3 Versions
  • 72 % Grown

The README.md

Laravel Geographical

Easily add longitude and latitude columns to your records and use inherited functionality for calculating distances., (*1)

First either update your database or add this to a migration for each model:, (*2)

$table->double('longitude');
$table->double('latitude');

Finally, edit you model to use the Geographical Trait, as the example below:, (*3)

<?php

namespace App\Models;

use Malhal\Geographical\Geographical;
use Illuminate\Database\Eloquent\Model;

class ModelExample extends Model
{
    use Geographical;

1. Distance

Find the distance to all the entries in your table from a particular location., (*4)

$query = ModelExample::distance($latitude, $longitude);
$asc = $query->orderBy('distance', 'ASC')->get();
 ```

### 2. Geofence

Find all the entries in your table inside a circular geo-fence.

```php
$query = ModelExample::geofence($latitude, $longitude, $inner_radius, $outer_radius);
$all = $query->get();

Use $inner_radius= 0 & $outer_radius = any number in miles that you desire., (*5)

Units

The default unit of distance is miles. You can change it to kilometers by putting this in your model, (*6)

protected static $kilometers = true;

Notes

  1. The method returns a Eloquent\Builder object so that you can add optional conditions if you want.
  2. If you require to select only a certain columns, it can be achieved by using select(). php ModelExample::select('id', 'name')->distance($latitude, $longitude); (select() should precede the distance()/geofence())
  3. You can use distance as an aggregate column in the result. (Aggregate columns cannot be used in WHERE, use HAVING to execute any condition.)
  4. If you use different column names for latitude and longitude, mention them in the Model.php php const LATITUDE = 'lat'; const LONGITUDE = 'lng';

Options

  1. You may pass an array of options as the third parameter of the distance method, these options will allow you to set a new table name or column names at runtime. php $query = Model::distance($latitude, $longitude, $options);, (*7)

  2. There are three fields you set with the options parameter at runtime: table, latitude_column, and longitude_column:, (*8)

    $options = [
       'table' => 'coordinates',
       'latitude_column' => 'lat',
       'longitude_column' => 'lon'
    ]
    
    Model::select('id', 'name')->distance($latitude, $longitude, $options);
    
  3. The table field will allow you to set the table from which the the coordinates will be selected at runtime, allowing you to join the coordinates to your model from another table., (*9)


    Model::join('locations', function($join){ $join->on('model.id', '=', 'locations.model_id'); }) ->select('id', 'name') ->distance($latitude, $longitude, ['table' => 'locations']);
  4. The latitude_column and longitude_column fields can be used to set the column names for a joined table, or to override the default column names (including those set on your model) at runtime. If you don't set the column name fields at runtime when using a joined table then column names set on your model, or the defaults of 'latitude' and 'longitude' will be used. Setting const LATITUDE = 'lat' or const LONGITUDE = 'lng' on a joined model will have no effect.

Installation

PHP 5.6.4+ and Laravel 5+ are required., (*10)

To get the latest version of Laravel Geographical, simply require the project using Composer:, (*11)

$ composer require malhal/laravel-geographical

The Versions

23/01 2018

dev-master

9999999-dev

Easily add longitude and latitude columns to your records and use inherited functionality for calculating distances

  Sources   Download

MIT

The Requires

 

by Malcolm Hall

laravel framework user latitude longitude models geographical malcolm hall malhal laravel geographical laravel-geographical

23/01 2018

1.0.1

1.0.1.0

Easily add longitude and latitude columns to your records and use inherited functionality for calculating distances

  Sources   Download

MIT

The Requires

 

by Malcolm Hall

laravel framework user latitude longitude models geographical malcolm hall malhal laravel geographical laravel-geographical

01/10 2016

1.0.0

1.0.0.0

Easily add longitude and latitude columns to your records and use inherited functionality for calculating distances

  Sources   Download

MIT

The Requires

 

by Malcolm Hall

laravel framework user latitude longitude models geographical malcolm hall malhal laravel geographical laravel-geographical