Commit 0c7fd9df authored by hujun's avatar hujun

//

parent 7ad93c4f
......@@ -37,6 +37,11 @@ class LocationService
return $result;
}
if ($longitude == '4.9406564584125E-324' || $latitude == '4.9406564584125E-324') {
$result['msg'] = '经纬度为空';
return $result;
}
if ($longitude > 100) {
$result['msg'] = '纬度范围错误';
return $result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment