TencentMap.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. /**
  9. * @return mixed
  10. */
  11. public function getKey()
  12. {
  13. return $this->key;
  14. }
  15. /**
  16. * @param mixed $key
  17. */
  18. public function setKey($key): void
  19. {
  20. $this->key = $key;
  21. }
  22. public function getLocation($longitude,$latitude){
  23. $loc="$latitude,$longitude";
  24. $res=self::client()->get('https://apis.map.qq.com/ws/geocoder/v1/',[
  25. 'query'=>$this->query([
  26. 'location'=>$loc,
  27. ]),
  28. ]);
  29. $res=$this->result($res);
  30. return [
  31. 'province'=>$res['ad_info']['province'],
  32. 'city'=>$res['ad_info']['city'],
  33. 'address'=>$res['address'],
  34. ];
  35. }
  36. public static function client(){
  37. static $client;
  38. if(!$client){
  39. $client=new Client();
  40. }
  41. return $client;
  42. }
  43. private function query(array $query){
  44. return array_merge($query,[
  45. 'key'=>$this->getKey(),
  46. ]);
  47. }
  48. private function result(ResponseInterface $response){
  49. $data=$response->getBody()->getContents();
  50. if(empty($data)){
  51. throw_user('调用tm返回值不存在');
  52. }
  53. $json=json_decode($data,true);
  54. if(!$json){
  55. throw_user('调用tm解析结果错误');
  56. }
  57. if($json['status']>0){
  58. throw_user("调用tm解析结果错误:{$json['message']}");
  59. }
  60. return $json['result'];
  61. }
  62. }