function hook_reverse_geocode_coordinates_alter in Geocoder 8.3
Alter the Coordinates to Reverse Geocode.
Allow others modules to adjust the Coordinates to Reverse Geocode.
Parameters
string $latitude: The latitude.
string $longitude: The longitude.
1 invocation of hook_reverse_geocode_coordinates_alter()
- Geocoder::reverse in src/
Geocoder.php  - Reverse geocodes coordinates.
 
File
- ./
geocoder.api.php, line 30  - API documentation for Geocoder module.
 
Code
function hook_reverse_geocode_coordinates_alter(string &$latitude, string &$longitude) {
  // Make custom alterations to the Coordinates to Reverse Geocode.
}