You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
think-library/src/service/amap/AmApService.php

113 lines
3.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
// +----------------------------------------------------------------------
// | ThinkLibrary 6.0 for ThinkPhP 6.0
// +----------------------------------------------------------------------
// | 版权所有 2017~2020 [ https://www.dtapp.net ]
// +----------------------------------------------------------------------
// | 官方网站: https://gitee.com/liguangchun/ThinkLibrary
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/liguangchun/ThinkLibrary
// | github 仓库地址 https://github.com/GC0202/ThinkLibrary
// | Packagist 地址 https://packagist.org/packages/liguangchun/think-library
// +----------------------------------------------------------------------
namespace DtApp\ThinkLibrary\service\amap;
use DtApp\ThinkLibrary\Service;
use DtApp\ThinkLibrary\service\curl\HttpService;
/**
* 高德地图
* https://lbs.amap.com/api/webservice/summary
* Class AmApService
* @package DtApp\ThinkLibrary\service\amap
*/
class AmApService extends Service
{
/**
* @var string
*/
private $url = "https://restapi.amap.com/v3/";
/**
* @var string
*/
private $key = "";
/**
* @var string
*/
private $output = "JSON";
/**
* @param string $key
* @return $this
*/
public function key(string $key): self
{
$this->key = $key;
return $this;
}
/**
* 天气查询
* https://lbs.amap.com/api/webservice/guide/api/weatherinfo
* @param string $city
* @param string $extensions
* @return array|bool|mixed|string
*/
public function weather($city = "110101", $extensions = "base")
{
$data = http_build_query([
"city" => $city,
"extensions" => $extensions,
"key" => $this->key,
"output" => $this->output,
]);
return HttpService::instance()
->url("{$this->url}weather/weatherInfo?{$data}")
->toArray();
}
/**
* 地理编码
* https://lbs.amap.com/api/webservice/guide/api/georegeo#geo
* @param $address
* @param string $city
* @return array|bool|mixed|string
*/
public function gCoderGeo($address, $city = '')
{
$data = http_build_query([
"city" => $city,
"address" => $address,
"key" => $this->key,
"output" => $this->output,
]);
return HttpService::instance()
->url("{$this->url}geocode/geo?{$data}")
->toArray();
}
/**
* 逆地理编码
* https://lbs.amap.com/api/webservice/guide/api/georegeo#regeo
* @param $location
* @return array|bool|mixed|string
*/
public function gCoderReGeo($location)
{
$data = http_build_query([
"location" => $location,
"key" => $this->key,
"output" => $this->output,
]);
return HttpService::instance()
->url("{$this->url}geocode/regeo?{$data}")
->toArray();
}
}