谷歌地图-地理编码,根据地址文本获取经纬度并计算距离

本文主要是介绍谷歌地图-地理编码,根据地址文本获取经纬度并计算距离,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


/*** Notes:地理编码--通过地址获取经纬度* User: 任性不起来了* Date: 2024/8/27 9:36* @param $data* @param $user*/public function geocode($data,$user){$start_address = $data['start_address'] ;$end_address = $data['end_address'] ;$start = geocode($start_address);$end = geocode($end_address);$log = ['start' => $start ,'end' => $end ,] ;error_log(date('Y-m-d H:i:s') . ' 地址信息-----' . json_encode($log, 320) . ' ' . PHP_EOL, 3, '../runtime/googlemap.log');if(!$start || !$end){return ApiReturn::r(0, [], '地址解析失败');}//根据经纬度获取距离$distance = getRouteDistance($start['lng'], $start['lat'], $end['lng'], $end['lat'] ,2);error_log(date('Y-m-d H:i:s') . ' 距离-----' . json_encode($distance, 320) . ' ' . PHP_EOL, 3, '../runtime/googlemap.log');$data = ['is_once' => 1,'distance' => $distance,] ;$info       = Deliver::get_pt_freight($start, $end, $data);$info['distance'] = $distance ;$info['unit'] = 'km' ;error_log(date('Y-m-d H:i:s') . ' 查询派送距离与派送费用接口-----' . json_encode($info, 320) . ' ' . PHP_EOL, 3, '../runtime/googlemap.log');return ApiReturn::r(1, $info, '查询派送距离与派送费用接口');}/*** 地理编码--通过地址获取经纬度*/
if (!function_exists("geocode")){/*** Notes:地理编码--通过地址获取经纬度* User: 任性不起来了* Date: 2024/8/27 9:36* @param $address*/function geocode($address){$key = config('googlemap_key') ;
//        $address = '1600+Amphitheatre+Parkway,+Mountain+View,+CA';$address = urlencode($address) ; //此处需进行地址编码$url = "https://maps.googleapis.com/maps/api/geocode/json?address={$address}&key={$key}" ;$res      = file_get_contents($url);$res      = json_decode($res, true);
//        error_log(date('Y-m-d H:i:s') . ' 地理编码--通过地址获取经纬度-----' . json_encode($res, 320) . ' ' . PHP_EOL, 3, '../runtime/googlemap.log');if (!empty($res) && $res['status'] == 'OK' && $res['results'][0]['geometry']['location']) {//经纬度信息$location = $res['results'][0]['geometry']['location'] ;return ['lat'=>$location['lat'],'lng'=>$location['lng']] ;}return [] ;}
}
/*** 获取路线规划距离*/
if (!function_exists('getRouteDistance')){/*** Notes:根据googl地图获取路线距离* User: 任性不起来了* Date: 2024/8/27 9:36* @param  Decimal $longitude1 起点经度* @param  Decimal $latitude1  起点纬度* @param  Decimal $longitude2 终点经度* @param  Decimal $latitude2  终点纬度* @param  Int     $decimal    精度 保留小数位数* @return Decimal*/function getRouteDistance($longitude1, $latitude1, $longitude2, $latitude2 ,$decimal=2){$key = config('googlemap_key') ;$unit = "metric";  //单位 metric:米/公里$url = "https://maps.googleapis.com/maps/api/distancematrix/json?units={$unit}&key={$key}&origins={$latitude1},{$longitude1}&destinations={$latitude2},{$longitude2}";$url = urldecode($url);$result = file_get_contents($url);$result = json_decode($result,true);if($result['status'] != 'OK'){return false;}if(!isset($result['rows']) || !isset($result['rows'][0]['elements'][0]['distance']['text'])){return false;}$distance_text = $result['rows'][0]['elements'][0]['distance']['text'];$distance = $result['rows'][0]['elements'][0]['distance']['value'];$place = stristr($distance_text,'km');// $duration_text  1 hour 58 mins 或 2 minif($place){if($distance <=0){$distance = 1;}$distance = $distance / 1000;}$distance = round($distance, $decimal);if($distance <=0){$distance = 1;}return $distance;}
}

这篇关于谷歌地图-地理编码,根据地址文本获取经纬度并计算距离的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1112644

相关文章

无人叉车3d激光slam多房间建图定位异常处理方案-墙体画线地图切分方案

墙体画线地图切分方案 针对问题:墙体两侧特征混淆误匹配,导致建图和定位偏差,表现为过门跳变、外月台走歪等 ·解决思路:预期的根治方案IGICP需要较长时间完成上线,先使用切分地图的工程化方案,即墙体两侧切分为不同地图,在某一侧只使用该侧地图进行定位 方案思路 切分原理:切分地图基于关键帧位置,而非点云。 理论基础:光照是直线的,一帧点云必定只能照射到墙的一侧,无法同时照到两侧实践考虑:关

三国地理揭秘:为何北伐之路如此艰难,为何诸葛亮无法攻克陇右小城?

俗话说:天时不如地利,不是随便说说,诸葛亮六出祁山,连关中陇右的几座小城都攻不下来,行军山高路险,无法携带和建造攻城器械,是最难的,所以在汉中,无论从哪一方进攻,防守方都是一夫当关,万夫莫开;再加上千里运粮,根本不需要打,司马懿只需要坚守城池拼消耗就能不战而屈人之兵。 另一边,洛阳的虎牢关,一旦突破,洛阳就无险可守,这样的进军路线,才是顺势而为的用兵之道。 读历史的时候我们常常看到某一方势

常用的jdk下载地址

jdk下载地址 安装方式可以看之前的博客: mac安装jdk oracle 版本:https://www.oracle.com/java/technologies/downloads/ Eclipse Temurin版本:https://adoptium.net/zh-CN/temurin/releases/ 阿里版本: github:https://github.com/

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

XTU 1237 计算几何

题面: Magic Triangle Problem Description: Huangriq is a respectful acmer in ACM team of XTU because he brought the best place in regional contest in history of XTU. Huangriq works in a big compa

webapp地址

F:\LSP\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return