wikibusiness / gisgraphy-bundle
Gisgraphy - 地理编码Web服务包装器。
0.1
2015-06-25 19:31 UTC
Requires
- php: >=5.5
- guzzlehttp/guzzle: ~5.1
This package is not auto-updated.
Last update: 2024-09-14 17:42:51 UTC
README
这是一个用于从gisgraphy解析地址数据的简单Symfony包装器。
安装
通过composer进行安装
$ composer require wikibusiness/gisgraphy-bundle
用法
$address = '1600 Amphitheatre Parkway Mountain View CA'; $countryCode = 'us'; $gis = new Gisgraphy($address, $countryCode); $gisAddress = $gis->decode(); var_dump($gisAddress); var_dump($gisAddress->toArray()); var_dump($gisAddress->getKeys()); var_dump($gisAddress->getZipcode());