Download the PHP package jcf/geocode without Composer
On this page you can find all versions of the php package jcf/geocode. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package geocode
Google Geocoding API for Laravel
A simple Laravel service provider for Google Geocoding API.
Installation
This package can be installed via Composer.
Run composer require command.
Laravel 5.5
Both the service provider and alias will be automatically installed by Laravel 5.5 package discovery. If you don't use auto discovery, follow the instructions for Laravel 5.0-5.4 below:
Laravel 5.0-5.4
After updating composer, add the service provider to the providers array in app/config/app.php
Add then alias Geocode adding its facade to the aliases array in the same file :
Laravel 4
After updating composer, add the service provider to the providers array in app/config/app.php
Add then alias Geocode adding its facade to the aliases array in the same file :
Lumen 5
After updating composer, register the service provider in bootstrap/app.php
Since facade are not enabled by default on Lumen, don't forget to add this.
Configuration
Add the following line to the .env file:
You can optionally set the response language.
Supported Languages for Google Maps Geocoding API.
Usage
You can find data from addresses:
Or from latitude/longitude:
If you need other data rather than formatted address, latitude, longitude or location type, you can use the raw()
method:
That's it. Pull requests are welcome.