通过GPS获取附近店铺
/**
* 通过GPS获取附近店铺
*/
if (!function_exists('get_nearby_shop')) {
function get_nearby_shop($lng, $lat, $distance = 10000) {
// $distance 为最小搜索返回 默认 5 千米
$result = Db::query("call geo_shop_dist({$lng}, {$lat}, {$distance})");
//返回 距离单位 为 米
if (empty($result)) {
return [];
}
return $result[0];
}
}