You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1018 B
PHP
40 lines
1018 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
* The api key used when sending Geocoding requests to Google.
|
|
*/
|
|
'key' => env('GOOGLE_MAPS_GEOCODING_API_KEY', ''),
|
|
|
|
/*
|
|
* The language param used to set response translations for textual data.
|
|
*
|
|
* More info: https://developers.google.com/maps/faq#languagesupport
|
|
*/
|
|
|
|
'language' => '',
|
|
|
|
/*
|
|
* The region param used to finetune the geocoding process.
|
|
*
|
|
* More info: https://developers.google.com/maps/documentation/geocoding/requests-geocoding#RegionCodes
|
|
*/
|
|
'region' => 'br',
|
|
|
|
/*
|
|
* The bounds param used to finetune the geocoding process.
|
|
*
|
|
* More info: https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Viewports
|
|
*/
|
|
'bounds' => 'Roraima',
|
|
|
|
/*
|
|
* The country param used to limit results to a specific country.
|
|
*
|
|
* More info: https://developers.google.com/maps/documentation/javascript/geocoding#GeocodingRequests
|
|
*/
|
|
'country' => 'Brazil',
|
|
|
|
];
|