A Laravel package for working with HERE Maps geolocation services, including geocoding, reverse geocoding, and route calculations.
plutuss/here-coding-geo is a Laravel package for a laravel package for working with here maps geolocation services, including geocoding, reverse geocoding, and route calculations..
It currently has 0 GitHub stars and 5 downloads on Packagist (latest version 0.1.0).
Install it with composer require plutuss/here-coding-geo.
Discover more Laravel packages by plutuss
or browse all Laravel packages to compare alternatives.
Last updated
composer require plutuss/here-coding-geo
php artisan vendor:publish --provider="Plutuss\HerePlatform\Providers\GeoCodingServiceProvider"
HERE_APP_ID=
HERE_API_KEY=
$result = GeoCoding::autocomplete('city street houseNumber');
/**
* @var GeoCodingResponseInterface[] $result
*/
foreach ($result as $item) {
echo "{$item->title()} <br/>";
}