码迷,mamicode.com
首页 > Windows程序 > 详细

PHP地址反查返回经纬度 百度API

时间:2014-12-02 17:21:05      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:百度地图   php地址反查经纬   

/**
     * 百度地图   根据地址反查经纬度
     */
    
    public function search_xy(){
      $address = str_replace(‘ ‘,‘‘,$address);
      $rows = file_get_contents("http://api.map.baidu.com/geocoder/v2/?ak=xxxxxxxxxxxxxx&callback=renderOption&output=json&address=首都图书馆&city=北京市朝阳区);
      $start = $this->getPos($rows,"{",2);
      $end = $this->getPos($rows,"}",2);  
      $json = mb_substr($rows, $start[2],intval($end[3])-intval($start[2])+1);
      $xy = json_decode($json,true); 
      return $xy;
    }

PHP地址反查返回经纬度 百度API

标签:百度地图   php地址反查经纬   

原文地址:http://blog.csdn.net/qq1355541448/article/details/41680859

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!