Sin descripción
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.

Map.php 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. class Map extends Base
  15. {
  16. public function getLocationByAddress()
  17. {
  18. $address = input('param.address/s');
  19. $ak = base64_decode(config('global.baidu_map_ak'));
  20. $url = $this->request->scheme()."://api.map.baidu.com/geocoder/v2/?address={$address}&city=&output=json&ak={$ak}";
  21. $result = httpRequest($url);
  22. $result = json_decode($result, true);
  23. if (!empty($result) && $result['status'] == 0) {
  24. $data['lng'] = $result['result']['location']['lng']; // 经度
  25. $data['lat'] = $result['result']['location']['lat']; // 纬度
  26. $data['map'] = $data['lng'].','.$data['lat'];
  27. $this->success('请求成功', null, $data);
  28. }
  29. $this->error('请求失败,无法继续~');
  30. }
  31. public function get_coordinate()
  32. {
  33. $coordinate = input('param.coordinate/s');
  34. $keyword = input('param.keyword/s');
  35. $func = input('param.func/s', 'undefined');
  36. $lng = 0;
  37. $lat = 0;
  38. if($coordinate && strpos($coordinate,',') !== false)
  39. {
  40. $map = explode(',',$coordinate);
  41. $lng = $map[0];
  42. $lat = isset($map[1]) ? $map[1] : 0;
  43. }
  44. $this->assign('lng',$lng);
  45. $this->assign('lat',$lat);
  46. $this->assign('ak', base64_decode(config('global.baidu_map_ak')));
  47. $this->assign('keyword',$keyword);
  48. $this->assign('func',$func);
  49. return $this->fetch();
  50. }
  51. }