Download the PHP package pderas/laravel-geocoder without Composer
On this page you can find all versions of the php package pderas/laravel-geocoder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download pderas/laravel-geocoder
More information about pderas/laravel-geocoder
Files in pderas/laravel-geocoder
Download pderas/laravel-geocoder
More information about pderas/laravel-geocoder
Files in pderas/laravel-geocoder
Vendor pderas
Package laravel-geocoder
Short Description A laravel package to help interact with the google maps api.
License MIT
Homepage https://github.com/PDERAS/laravel-geocoder
Package laravel-geocoder
Short Description A laravel package to help interact with the google maps api.
License MIT
Homepage https://github.com/PDERAS/laravel-geocoder
Please rate this library. Is it a good library?
Informations about the package laravel-geocoder
Laravel Geocoder
About
A laravel package to help interact with the google maps api.
Installation
Publish the config, and fill in the appropriate fields in your .env
file
Usage
Create a new Instance. Base configuration options can be set here, which can be used to override or instead of the values set in the config file. All options here are optional.
To Retrieve information about an address, pass it as parameters to the send
function.
// All fields are optional, but the more details provided, the more accurate the results.
$location_data = [
'address_line_1' => null,
'address_line_2' => null,
'city' => null,
'country' => null,
'postal_code' => null,
'province' => null,
'state' => null,
'zip_code' => null,
];
$results = $geocoder->send($location_data)
All versions of laravel-geocoder with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0.0
The package pderas/laravel-geocoder contains the following files
Loading the files please wait ....