Viewing file: geocoder.php (967 B) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
return [
/* * The api key used when sending Geocoding requests to Google. */ 'key' => env('GOOGLE_MAPS_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/intro#RegionCodes */ 'region' => '',
/* * The bounds param used to finetune the geocoding process. * * More info: https://developers.google.com/maps/documentation/geocoding/intro#Viewports */ 'bounds' => '',
/* * The country param used to limit results to a specific country. * * More info: https://developers.google.com/maps/documentation/javascript/geocoding#GeocodingRequests */ 'country' => '',
];
|