|
@@ -7,6 +7,7 @@ use traits\think\Instance;
|
|
|
class TencentMap{
|
|
|
use Instance;
|
|
|
protected $key;
|
|
|
+ protected $secretKey;
|
|
|
|
|
|
/**
|
|
|
* @return mixed
|
|
@@ -39,6 +40,42 @@ class TencentMap{
|
|
|
];
|
|
|
}
|
|
|
|
|
|
+ public function getDistance($from,$to){
|
|
|
+ $query=$this->query([
|
|
|
+ 'from'=>implode(',',array_reverse($from)),
|
|
|
+ 'to'=>implode(',',array_reverse($to)),
|
|
|
+ ]);
|
|
|
+ $res=self::client()->get('https://apis.map.qq.com/ws/direction/v1/driving',[
|
|
|
+ 'query'=>$query+['sig'=>$this->getSign('/ws/direction/v1/driving',$query)]
|
|
|
+ ]);
|
|
|
+ $res=$this->result($res);
|
|
|
+ return [
|
|
|
+ 'distance'=>bcdiv($res['routes'][0]['distance'],1000),
|
|
|
+ ];
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function getSign($uri,$query){
|
|
|
+ ksort($query);
|
|
|
+ $str=sprintf("%s?%s",$uri,$this->buildQuery($query));
|
|
|
+ return md5($str);
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function buildQuery($query){
|
|
|
+ $data=[];
|
|
|
+ foreach ($query as $key=>$value){
|
|
|
+ $data[]=sprintf("%s=%s",$key,$value);
|
|
|
+ }
|
|
|
+ return implode('&',$data).$this->secretKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param mixed $secretKey
|
|
|
+ */
|
|
|
+ public function setSecretKey($secretKey): void
|
|
|
+ {
|
|
|
+ $this->secretKey = $secretKey;
|
|
|
+ }
|
|
|
+
|
|
|
public static function client(){
|
|
|
static $client;
|
|
|
if(!$client){
|