1
|
|
|
<?php |
2
|
|
|
namespace TNM\GolfCourses\Service; |
3
|
|
|
|
4
|
|
|
/*************************************************************** |
5
|
|
|
* Copyright notice |
6
|
|
|
* |
7
|
|
|
* (c) 2017 Tomas Norre Mikkelsen <[email protected]> |
8
|
|
|
* |
9
|
|
|
* All rights reserved |
10
|
|
|
* |
11
|
|
|
* This script is part of the TYPO3 project. The TYPO3 project is |
12
|
|
|
* free software; you can redistribute it and/or modify |
13
|
|
|
* it under the terms of the GNU General Public License as published by |
14
|
|
|
* the Free Software Foundation; either version 3 of the License, or |
15
|
|
|
* (at your option) any later version. |
16
|
|
|
* |
17
|
|
|
* The GNU General Public License can be found at |
18
|
|
|
* http://www.gnu.org/copyleft/gpl.html. |
19
|
|
|
* |
20
|
|
|
* This script is distributed in the hope that it will be useful, |
21
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
22
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
23
|
|
|
* GNU General Public License for more details. |
24
|
|
|
* |
25
|
|
|
* This copyright notice MUST APPEAR in all copies of the script! |
26
|
|
|
***************************************************************/ |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* Class GoogleCoordinatesService |
30
|
|
|
* |
31
|
|
|
*/ |
32
|
|
|
class GoogleCoordinatesService |
33
|
|
|
{ |
34
|
|
|
/** |
35
|
|
|
* @param $address |
36
|
|
|
* |
37
|
|
|
* @return array |
38
|
|
|
* @codeCoverageIgnore |
39
|
|
|
*/ |
40
|
|
|
public static function getCoordinates($address) |
41
|
|
|
{ |
42
|
|
|
if (empty($address)) { |
43
|
|
|
return []; |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
$address = urlencode($address); |
47
|
|
|
$address = str_replace(' ', '+', $address); |
48
|
|
|
$url = 'http://maps.google.com/maps/api/geocode/json?sensor=false&address=' . $address; |
49
|
|
|
|
50
|
|
|
$response = file_get_contents($url); |
51
|
|
|
|
52
|
|
|
//generate array object from the response from the web |
53
|
|
|
$json = json_decode($response, true); |
54
|
|
|
|
55
|
|
|
return [ |
56
|
|
|
'longitude' => $json['results'][0]['geometry']['location']['lng'], |
57
|
|
|
'latitude' => $json['results'][0]['geometry']['location']['lat'] |
58
|
|
|
]; |
59
|
|
|
} |
60
|
|
|
} |
61
|
|
|
|