xolf/locationiq

Php Wrapper for https://locationiq.org

0.0.3 2017-03-01 07:44 UTC

This package is not auto-updated.

Last update: 2024-05-11 18:33:57 UTC


README

Php Wrapper for https://locationiq.org

Install

composer require xolf/locationiq

Make first request

$search = new \Xolf\LocationIQ\Search($apiKey);
$result = $search->get("Empire State Building");

// 40.7487727
$result[0]->lat;

// -73.9849336
$result[0]->lon;

// "node"
$result[0]->osm_type;

// "Empire State Building, 362, 5th Avenue, Diamond District, Manhattan, New York County, New York City, New York, 10035, United States of America"
$result[0]->osm_type;