1 Star 0 Fork 0

jackeer/weizhan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
map.php 3.27 KB
一键复制 编辑 原始数据 按行查看 历史
carlton 提交于 2014-02-09 13:03 . init
<?php
define ("DEBUG_MODE", false);
$k=$_GET['keyword'];
$x=$_GET['x'];
$y=$_GET['y'];
//VAR_dump($_GET);
$searchArray = catchEntitiesFromLocation($k,$x,$y,2000);
echo json_encode( $searchArray);
// $searchArray = catchEntitiesFromLocation("gh_3c1a25652daa", "银行", 39.915, 116.404, 2000);
// var_dump( $searchArray);
function catchEntitiesFromLocation( $entity, $x, $y, $radius)
{
$mapObj = new baiduMapClient();
$search = $mapObj->Place_search($entity, $x.",".$y, $radius);
$results = $search->results;
for ($i = 0; $i < count($results); $i++) {
$distance = getDistance_map($x, $y, $results[$i]->location->lat, $results[$i]->location->lng);
$shopSortArrays[$distance] = array(
"Title"=>$results[$i]->name." 【距离你】".$distance."米 【地址】".$results[$i]->address.(isset($results[$i]->telephone)?" ".$results[$i]->telephone:""),
"Description"=>"{$results[$i]->address}",
"Url"=>"{$results[$i]->detail_url}");
}
ksort($shopSortArrays);//排序
$shopArray = array();
foreach ($shopSortArrays as $key => $value) {
$shopArray[] = array(
"title" => $value["Title"],
"key" => $key,
'pic' =>'',
"url" => $value["Url"],
);
if (count($shopArray) > 9){break;}
}
return $shopArray;
}
function getDistance_map($lat_a, $lng_a, $lat_b, $lng_b) {
//R是地球半径(米)
$R = 6366000;
$pk = doubleval(180 / 3.14169);
$a1 = doubleval($lat_a / $pk);
$a2 = doubleval($lng_a / $pk);
$b1 = doubleval($lat_b / $pk);
$b2 = doubleval($lng_b / $pk);
$t1 = doubleval(cos($a1) * cos($a2) * cos($b1) * cos($b2));
$t2 = doubleval(cos($a1) * sin($a2) * cos($b1) * sin($b2));
$t3 = doubleval(sin($a1) * sin($b1));
$tt = doubleval(acos($t1 + $t2 + $t3));
return round($R * $tt);
}
class baiduMapClient
{
private $api_server_url;
private $auth_params;
public function __construct()
{
$this->api_server_url = "http://api.map.baidu.com/";
$this->auth_params = array();
$this->auth_params['key'] = "401f9a693dd267dd9a4661ec0895fb20";
$this->auth_params['output'] = "json";
}
public function Place_search($query, $location, $radius)
{
return $this->call("place/search", array("query" => $query, "location" => $location, "radius" => $radius));
}
protected function call($method, $params = array())
{
$headers = array(
"User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:14.0) Gecko/20100101 Firefox/14.0.1",
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Accept-Language: en-us,en;q=0.5",
//"Accept-Encoding: gzip, deflate",
"Referer: http://developer.baidu.com/"
);
$params = array_merge($this->auth_params, $params);
$url = $this->api_server_url . "$method?".http_build_query($params);
if (DEBUG_MODE){echo "REQUEST: $url" . "\n";}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$data = curl_exec($ch);
curl_close($ch);
$result = null;
if (!empty($data)){
if (DEBUG_MODE){
echo "RETURN: " . $data . "\n";
}
$result = json_decode($data);
}
else{
echo "cURL Error:". curl_error($ch);
}
//var_dump($result);
return $result;
}
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jackeerlbj/weizhan.git
git@gitee.com:jackeerlbj/weizhan.git
jackeerlbj
weizhan
weizhan
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385