Laravel GeoHash
Laravel GeoHash LBS地理位置距離計算方法geohash解寝,將一個經(jīng)緯度信息男翰,轉(zhuǎn)換成一個可以排序,可以比較的字符串編碼,用于高效搜索
安裝方法
composer require youthage/laravel-geohash
配置方法
app.php 配置如下:
providers中添加
Geohash\GeoHashProvider::class,
aliases中添加
'GeoHash' => \Geohash\GeoHashFacade::class,
使用方法
<?php
namespace App\Http\Controllers;
use GeoHash;
class IndexController extends Controller
{
public function index()
{
// 參數(shù):緯度泌神,經(jīng)度
$geo = GeoHash::encode("69.3252", "136.2345");
echo $geo;
list($lat, $lng) = GeoHash::decode($geo);
echo $lat, ', ', $lng;
}
}