15 lines
663 B
PHP
15 lines
663 B
PHP
<?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'] = 'ABQIAAAAr-Ryn_rBPNdbGZMj6ol1UBRilJROL6iQId9Ow3y7N7_ES742DBQLKgFvbUSVpr9097tywJ-Q2Aq5oA';
|
|
/**
|
|
* 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'] = 'google.pl'; |