malhal/laravel-geographical 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

malhal/laravel-geographical

Composer 安装命令:

composer require malhal/laravel-geographical

包简介

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

README 文档

README

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

First either update your database or add this to a migration for each model:

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

Finally, edit you model to use the Geographical Trait, as the example below:

<?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.

$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.

$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.

Units

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

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().
    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
    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.

    $query = Model::distance($latitude, $longitude, $options);
  2. There are three fields you set with the options parameter at runtime: table, latitude_column, and longitude_column:

    $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.

    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.

To get the latest version of Laravel Geographical, simply require the project using Composer:

$ composer require malhal/laravel-geographical

malhal/laravel-geographical 适用场景与选型建议

malhal/laravel-geographical 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 398.03k 次下载、GitHub Stars 达 283, 最近一次更新时间为 2016 年 10 月 01 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「framework」 「user」 「geographical」 「laravel」 「models」 「latitude」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 malhal/laravel-geographical 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 malhal/laravel-geographical 我们能提供哪些服务?
定制开发 / 二次开发

基于 malhal/laravel-geographical 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 398.03k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 283
  • 点击次数: 32
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 283
  • Watchers: 11
  • Forks: 53
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-10-01