opendi/nominatim
最新稳定版本:1.0.0
Composer 安装命令:
composer require opendi/nominatim
包简介
A simple interface to OSM Nominatim search.
README 文档
README
A simple interface to OSM Nominatim search.
See Nominatim documentation for info on the service.
Basic usage
Create a new instance of Nominatim by using the newInstance() factory method.
use Opendi\Nominatim\Nominatim; $url = "http://nominatim.openstreetmap.org/"; $nominatim = Nominatim::newInstance($url);
Searching by query:
$search = $nominatim->newSearch(); $search->query('1600 Pennsylvania Ave NW, Washington, DC 20500, United States'); $nominatim->find($search);
Or break it down by address:
$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);
The result will be an array of results (in this case, only one result was found).
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 ) ) )
统计信息
- 总下载量: 1.57k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2014-07-09