kriosmane/open-street-map

Package for integrate OpenStreetMap in Laravel

v1.0.3 2025-03-04 11:48 UTC

This package is auto-updated.

Last update: 2025-03-04 11:50:10 UTC


README

Latest Version on Packagist Total Downloads

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

  1. Require the package via Composer:

    composer require kriosmane/open-street-map
  2. 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),
];