laevael 7 使用redis 中geo 类型计算两地之间的距离
2021/12/11 19:49:44
本文主要是介绍laevael 7 使用redis 中geo 类型计算两地之间的距离,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
public function redis(Request $request){ //$city地区1 //$goodsCity地区2 $city=$request->input('city'); $goodsCity=$request->input('goodsCity'); //地址改为经纬度 调用百度地图 $url='http://apis.map.qq.com/ws/geocoder/v1/?address='.$city.'&key=你申请的百度地图key'; $result=file_get_contents($url); $data = json_decode($result,TRUE); //经纬度 取值 // var_dump($data['result']['location']['lng']); // var_dump($data['result']['location']['lat']); //地址改为经纬度 调用百度地图 $url='http://apis.map.qq.com/ws/geocoder/v1/?address='.$goodsCity.'&key=ZSYBZ-RF6RK-RONJP-AZYJM-BQBKQ-4OB3J'; $result=file_get_contents($url); $res = json_decode($result,TRUE); //经纬度 取值 // var_dump($res['result']['location']['lng']); // var_dump($res['result']['location']['lat']); Redis::geoAdd('citys', $data['result']['location']['lng'], $data['result']['location']['lat'], $city); Redis::geoAdd('citys', $res['result']['location']['lng'], $res['result']['location']['lat'], $goodsCity); $data=Redis::geodist( 'citys','beijing', 'shanghai','km'); return ['code'=>200,'data'=>'两地距离'.$data.'km','msg'=>'ok']; } redis 版本必须是3.2 以上
这篇关于laevael 7 使用redis 中geo 类型计算两地之间的距离的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-02阿里云Redis项目实战入门教程
- 2025-01-02阿里云Redis资料入门详解
- 2024-12-30阿里云Redis教程:新手入门指南
- 2024-12-27阿里云Redis学习入门指南
- 2024-12-27阿里云Redis入门详解:轻松搭建与管理
- 2024-12-27阿里云Redis学习:新手入门指南
- 2024-12-24Redis资料:新手入门快速指南
- 2024-12-24Redis资料:新手入门教程与实践指南
- 2024-12-24Redis资料:新手入门教程与实践指南
- 2024-12-07Redis高并发入门详解