first commit

This commit is contained in:
2026-04-30 14:38:11 +02:00
commit e22bbde336
1994 changed files with 613950 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* You should set your own API key in application/config/gmaps.php
* This API key is usable for http://localhost/*
*/
$config['api_key'] = 'ABQIAAAAnfs7bKE82qgb3Zc2YyS-oBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxSySz_REpPq-4WZA27OwgbtyR3VcA';
/**
* Using a localised google domain gives more accurated results on geolocation
* For example, searches for "Toledo" will return different results within the domain of Spain (http://maps.google.es)
* specified by a country code of "es" than within the default domain within the United States (http://maps.google.com).
*/
$config['api_domain'] = 'maps.google.com';
/**
* This is used to determine how many times we should retry the geocode when Google sends back a 620 status code.
* The 620 status code is used as a way to let you know Google is rate limiting your requests.
*/
$config['retries'] = 10;
/**
* This is used to determine how long we should wait before retrying (in microseconds).
* Default: 100000 (0.1 seconds)
*/
$config['retry_delay'] = 100000;