opendi / nominatim
OSM Nominatim 搜索的简单界面。
1.0.0
2018-01-22 13:48 UTC
Requires
- php: ^5.6.0 || ^7.0.0
- guzzlehttp/guzzle: ^6.0.0
Requires (Dev)
- mockery/mockery: @stable
- phpunit/phpunit: ^6.0.0
This package is not auto-updated.
Last update: 2024-09-14 16:24:00 UTC
README
OSM Nominatim 搜索的简单界面。
有关该服务的更多信息,请参阅 Nominatim 文档。
基本用法
使用 newInstance()
工厂方法创建 Nominatim 的新实例。
use Opendi\Nominatim\Nominatim; $url = "http://nominatim.openstreetmap.org/"; $nominatim = Nominatim::newInstance($url);
通过查询搜索
$search = $nominatim->newSearch(); $search->query('1600 Pennsylvania Ave NW, Washington, DC 20500, United States'); $nominatim->find($search);
或者通过地址分解
$search = $nominatim->newSearch() ->street('1600 Pennsylvania Ave NW') ->city('Washington') ->county('Washington') ->state('Washington DC') ->postalCode('DC 20500') ->country('United States') ->addressDetails(); $nominatim->find($search);
结果将是一个结果数组(在这种情况下,只找到一条结果)。
Array ( [0] => Array ( [place_id] => 2632584431 [licence] => Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright [osm_type] => way [osm_id] => 238241022 [boundingbox] => Array ( [0] => 38.8974898 [1] => 38.897911 [2] => -77.0368539 [3] => -77.0362521 ) [lat] => 38.8976989 [lon] => -77.036553192281 [display_name] => The White House, 1600, Pennsylvania Avenue Northwest, Thomas Circle, Southwest Waterfront, Washington, 20500, United States of America [class] => tourism [type] => attraction [importance] => 1.5576757387296 [icon] => http://nominatim.openstreetmap.org/images/mapicons/poi_point_of_interest.p.20.png [address] => Array ( [attraction] => The White House [house_number] => 1600 [pedestrian] => Pennsylvania Avenue Northwest [neighbourhood] => Thomas Circle [suburb] => Southwest Waterfront [city] => Washington [county] => Washington [postcode] => 20500 [country] => United States of America [country_code] => us ) ) )