TencentMap.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. use GuzzleHttp\Client;
  3. use Psr\Http\Message\ResponseInterface;
  4. use traits\think\Instance;
  5. class TencentMap{
  6. use Instance;
  7. protected $key;
  8. protected $secretKey;
  9. /**
  10. * @return mixed
  11. */
  12. public function getKey()
  13. {
  14. return $this->key;
  15. }
  16. /**
  17. * @param mixed $key
  18. */
  19. public function setKey($key): void
  20. {
  21. $this->key = $key;
  22. }
  23. public function getLocation($longitude,$latitude){
  24. $loc="$latitude,$longitude";
  25. $res=self::client()->get('https://apis.map.qq.com/ws/geocoder/v1/',[
  26. 'query'=>$this->query([
  27. 'location'=>$loc,
  28. ]),
  29. ]);
  30. $res=$this->result($res);
  31. return [
  32. 'province'=>$res['ad_info']['province']??'',
  33. 'city'=>$res['ad_info']['city']??'',
  34. 'address'=>$res['address']??'',
  35. ];
  36. }
  37. public function getDistance($from,$to){
  38. $query=$this->query([
  39. 'from'=>implode(',',array_reverse($from)),
  40. 'to'=>implode(',',array_reverse($to)),
  41. ]);
  42. $res=self::client()->get('https://apis.map.qq.com/ws/direction/v1/driving',[
  43. 'query'=>$query+['sig'=>$this->getSign('/ws/direction/v1/driving',$query)]
  44. ]);
  45. $res=$this->result($res);
  46. return [
  47. 'distance'=>bcdiv($res['routes'][0]['distance'],1000),
  48. ];
  49. }
  50. protected function getSign($uri,$query){
  51. ksort($query);
  52. $str=sprintf("%s?%s",$uri,$this->buildQuery($query));
  53. return md5($str);
  54. }
  55. protected function buildQuery($query){
  56. $data=[];
  57. foreach ($query as $key=>$value){
  58. $data[]=sprintf("%s=%s",$key,$value);
  59. }
  60. return implode('&',$data).$this->secretKey;
  61. }
  62. /**
  63. * @param mixed $secretKey
  64. */
  65. public function setSecretKey($secretKey): void
  66. {
  67. $this->secretKey = $secretKey;
  68. }
  69. public static function client(){
  70. static $client;
  71. if(!$client){
  72. $client=new Client();
  73. }
  74. return $client;
  75. }
  76. private function query(array $query){
  77. return array_merge($query,[
  78. 'key'=>$this->getKey(),
  79. ]);
  80. }
  81. private function result(ResponseInterface $response){
  82. $data=$response->getBody()->getContents();
  83. if(empty($data)){
  84. throw_user('调用tm返回值不存在');
  85. }
  86. $json=json_decode($data,true);
  87. if(!$json){
  88. throw_user('调用tm解析结果错误');
  89. }
  90. if($json['status']>0){
  91. throw_user("调用tm解析结果错误:{$json['message']}");
  92. }
  93. return $json['result'];
  94. }
  95. }