PHP code example of death_satan / tencent-map-api
1. Go to this page and download the library: Download death_satan/tencent-map-api library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
death_satan / tencent-map-api example snippets
$key = '';//腾讯地图key
$app = new \DeathSatan\TencentMapApi\Application($key);
//地址转经纬度
$data=$app->api()->addressResolution('北京市');
var_dump($data);
/**
* echo
*
["adcode"]=>
string(6) "110114"
}
["address_components"]=>
array(5) {
["province"]=>
string(9) "北京市"
["city"]=>
string(9) "北京市"
["district"]=>
string(9) "昌平区"
["street"]=>
string(0) ""
["street_number"]=>
string(0) ""
}
["similarity"]=>
float(0.8)
["deviation"]=>
int(1000)
["reliability"]=>
int(1)
["level"]=>
int(2)
}
*/