I worked with a very similar question and after implementation I found that it creates a tall rectangle with the returned coordinates instead of a square (please see Matthias answer to another question).
I only need an array that needs to be returned, as this should work with WordPress, which has its own preferred request method.
Here is my implementation:
function bar_get_nearby( $lat, $lng, $limit = 50, $distance = 50, $unit = 'mi' ) { // radius of earth; @note: the earth is not perfectly spherical, but this is considered the 'mean radius' if( $unit == 'km' ) { $radius = 6371.009; } elseif ( $unit == 'mi' ) { $radius = 3958.761; } // latitude boundaries $maxLat = ( float ) $lat + rad2deg( $distance / $radius ); $minLat = ( float ) $lat - rad2deg( $distance / $radius ); // longitude boundaries (longitude gets smaller when latitude increases) $maxLng = ( float ) $lng + rad2deg( $distance / $radius / cos( deg2rad( ( float ) $lat ) ) ); $minLng = ( float ) $lng - rad2deg( $distance / $radius / cos( deg2rad( ( float ) $lat ) ) ); $max_min_values = array( 'max_latitude' => $maxLat, 'min_latitude' => $minLat, 'max_longitude' => $maxLng, 'min_longitude' => $minLng ); return $max_min_values; }
If I give the geocode (via the Google Maps API) my desired G2 1QX zip code and a distance of 5 miles, I get lat / lng from -4.2556347 / 55.8620472 with a function returning this array:
Array ( [max_latitude] => -4.18326890233 [min_latitude] => -4.32800049767 [max_longitude] => 55.9346130696 [min_longitude] => 55.7894813304 )
Any ideas? Thank you very much in advance.
Cheers, Robert
Robert Simpson
source share