美文网首页
PHP经纬座标转地名(通过腾讯地图接口),函数来源:梦行云软件

PHP经纬座标转地名(通过腾讯地图接口),函数来源:梦行云软件

作者: 梦行Monxin | 来源:发表于2020-10-03 11:17 被阅读0次

    function get_gps_to_name_tx($location,$key){

        $url='https://apis.map.qq.com/ws/geocoder/v1/?location='.$location.'&key='.$key.'&get_poi=1&poi_options=policy=2';

        $c= file_get_contents($url);

        $c=json_decode($c,1);

        if(isset($c['result']['pois'][0]['title'])){

            return $c['result']['pois'][0]['title'];

        }

        return '';

    }

    相关文章

      网友评论

          本文标题:PHP经纬座标转地名(通过腾讯地图接口),函数来源:梦行云软件

          本文链接:https://www.haomeiwen.com/subject/rkkwuktx.html