-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathGeocoding.php
More file actions
241 lines (217 loc) · 8.32 KB
/
Copy pathGeocoding.php
File metadata and controls
241 lines (217 loc) · 8.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<?php
namespace Fleetbase\FleetOps\Support;
use Fleetbase\FleetOps\Models\Place;
use Geocoder\Provider\GoogleMaps\GoogleMaps;
use Geocoder\Provider\GoogleMapsPlaces\GoogleMapsPlaces;
use Geocoder\Query\GeocodeQuery;
use Geocoder\Query\ReverseQuery;
use Geocoder\StatefulGeocoder;
use GuzzleHttp\Client;
use Illuminate\Support\Collection;
/**
* Class Geocoding.
*
* Provides geocoding functionalities using Google Maps API.
*/
class Geocoding
{
/**
* Search radius in meters.
*/
public const SEARCH_RADIUS = 2000;
/**
* Geocode a search query to get places.
*
* @param string $searchQuery the query to search for
* @param float|null $latitude optional latitude for location-based search
* @param float|null $longitude optional longitude for location-based search
*
* @return Collection a collection of places
*
* @throws \Exception
*/
/**
* Retrieve the configured Google Maps locale.
*/
public static function getLocale(): string
{
return config('services.google_maps.locale', env('GOOGLE_MAPS_LOCALE', 'en'));
}
/**
* Geocode a search query to get places.
*
* @param string $searchQuery the query to search for
* @param float|null $latitude optional latitude for location-based search
* @param float|null $longitude optional longitude for location-based search
*
* @return Collection a collection of places
*
* @throws \Exception
*/
public static function geocode(string $searchQuery, $latitude = null, $longitude = null): Collection
{
$httpClient = new Client();
$locale = static::getLocale();
$provider = new GoogleMaps($httpClient, $locale, config('services.google_maps.api_key', env('GOOGLE_MAPS_API_KEY')));
$geocoder = new StatefulGeocoder($provider, $locale);
try {
if ($latitude && $longitude) {
$geoResults = $geocoder->geocodeQuery(
GeocodeQuery::create($searchQuery)
->withData('mode', GoogleMapsPlaces::GEOCODE_MODE_SEARCH)
->withData('location', "$latitude, $longitude")
->withData('radius', self::SEARCH_RADIUS)
);
} else {
$geoResults = $geocoder->geocodeQuery(
GeocodeQuery::create($searchQuery)
->withData('mode', GoogleMapsPlaces::GEOCODE_MODE_SEARCH)
);
}
return collect($geoResults->all())->map(
function ($googleAddress) {
return Place::createFromGoogleAddress($googleAddress);
}
)->values();
} catch (\Exception $e) {
// Handle exceptions here or re-throw them to be handled elsewhere
throw $e;
}
return collect();
}
/**
* Perform a reverse geocoding query based on a search query and coordinates.
*
* @param string $searchQuery the query to search for
* @param float $latitude latitude of the location
* @param float $longitude longitude of the location
*
* @return Collection a collection of places
*
* @throws \Exception
*/
public static function reverseFromQuery(string $searchQuery, $latitude, $longitude): Collection
{
$httpClient = new Client();
$locale = static::getLocale();
$provider = new GoogleMaps($httpClient, $locale, config('services.google_maps.api_key', env('GOOGLE_MAPS_API_KEY')));
$geocoder = new StatefulGeocoder($provider, $locale);
if (empty($searchQuery)) {
return collect();
}
if (empty($latitude) && empty($longitude)) {
return collect();
}
try {
$geoResults = $geocoder->reverseQuery(
ReverseQuery::fromCoordinates($latitude, $longitude)
->withData('mode', GoogleMapsPlaces::GEOCODE_MODE_NEARBY)
->withData('keyword', $searchQuery)
->withData('radius', self::SEARCH_RADIUS)
);
return collect($geoResults->all())->map(
function ($googleAddress) {
return Place::createFromGoogleAddress($googleAddress);
}
)->values();
} catch (\Exception $e) {
// Handle exceptions here or re-throw them to be handled elsewhere
throw $e;
}
return collect();
}
/**
* Perform a reverse geocoding query based on coordinates.
*
* @param float $latitude latitude of the location
* @param float $longitude longitude of the location
* @param string|null $searchQuery optional query to refine the search
*
* @return Collection a collection of places
*
* @throws \Exception
*/
public static function reverseFromCoordinates($latitude, $longitude, ?string $searchQuery = null): Collection
{
$httpClient = new Client();
$locale = static::getLocale();
$provider = new GoogleMaps($httpClient, $locale, config('services.google_maps.api_key', env('GOOGLE_MAPS_API_KEY')));
$geocoder = new StatefulGeocoder($provider, $locale);
if (empty($latitude) && empty($longitude)) {
return collect();
}
try {
if ($searchQuery) {
$geoResults = $geocoder->reverseQuery(
ReverseQuery::fromCoordinates($latitude, $longitude)
->withData('mode', GoogleMapsPlaces::GEOCODE_MODE_NEARBY)
->withData('keyword', $searchQuery)
->withData('radius', self::SEARCH_RADIUS)
);
} else {
$geoResults = $geocoder->reverseQuery(
ReverseQuery::fromCoordinates($latitude, $longitude)
->withData('mode', GoogleMapsPlaces::GEOCODE_MODE_NEARBY)
->withData('radius', self::SEARCH_RADIUS)
);
}
return collect($geoResults->all())->map(
function ($googleAddress) {
return Place::createFromGoogleAddress($googleAddress);
}
)->values();
} catch (\Exception $e) {
// Handle exceptions here or re-throw them to be handled elsewhere
throw $e;
}
return collect();
}
/**
* Locate places based on a search query and coordinates.
*
* @param string $searchQuery the query to search for
* @param float $latitude latitude of the location
* @param float $longitude longitude of the location
*
* @return Collection a unique collection of places
*
* @throws \Exception
*/
public static function locate(string $searchQuery, $latitude, $longitude): Collection
{
try {
$reverseQueryResults = static::reverseFromCoordinates($latitude, $longitude, $searchQuery);
$geodingQueryResults = static::geocode($searchQuery, $latitude, $longitude);
} catch (\Exception $e) {
// Handle exceptions here or re-throw them to be handled elsewhere
throw $e;
}
return $reverseQueryResults->merge($geodingQueryResults)->unique('street1');
}
/**
* Query places based on a search query and coordinates.
*
* @param string $searchQuery the query to search for
* @param float $latitude latitude of the location
* @param float $longitude longitude of the location
*
* @return Collection A unique collection
*
* @throws \Exception
*/
public static function query(string $searchQuery, $latitude, $longitude): Collection
{
try {
$reverseQueryResults = static::reverseFromQuery($searchQuery, $latitude, $longitude);
$geodingQueryResults = static::geocode($searchQuery, $latitude, $longitude);
} catch (\Exception $e) {
// Handle exceptions here or re-throw them to be handled elsewhere
throw $e;
}
return $reverseQueryResults->merge($geodingQueryResults)->unique('street1');
}
public static function canGoogleGeocode(): bool
{
return Utils::notEmpty(config('services.google_maps.api_key'));
}
}