morriszhao / map-api
map api Tengxun Baidu PHP 地址转为经纬度
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/morriszhao/map-api
This package is auto-updated.
Last update: 2025-09-27 16:10:15 UTC
README
tengxunmapapi
地址转换为经纬度!
安装
composer require morriszhao/map-api
使用
<?php include '../vendor/autoload.php'; use Map\Tengxun\TengxunMapApi; $address = '四川省成都市天府五街'; $txMapKey = '<YOUR KEY>'; $txMapSecret = '<YOU SECRET>'; $map = new TengxunMapApi($txMapKey, $txMapSecret); print_r($map->getGeocoder($address));