kriosmane / open-street-map
Package for integrate OpenStreetMap in Laravel
v1.0.3
2025-03-04 11:48 UTC
Requires
- laravel/framework: ^10.0|^11.0|^12.0
README
Kriosmane/OpenStreetMap
A Laravel package that simplifies integration with the OpenStreetMap Nominatim API to fetch coordinates, address details, and more.
Table of Contents
Requirements
- PHP >= 8.1
- Laravel >= 11
- Composer installed
Installation
-
Require the package via Composer:
composer require kriosmane/open-street-map
-
Publish configuration (optional)
php artisan vendor:publish --provider="Kriosmane\OpenStreetMap\Providers\OpenStreetMapServiceProvider" --tag="config"
Configuration
By default, the package looks for the following configuration parameters:
return [ 'api_base_url' => env('OSM_API_BASE_URL', 'https://nominatim.openstreetmap.org'), 'timeout' => env('OSM_API_TIMEOUT', 5), ];