tongshanglei 2 years ago
parent
commit
2bcb8d6d27
2 changed files with 10 additions and 2 deletions
  1. 5 1
      catch/device/controller/Station.php
  2. 5 1
      catch/device/model/Station.php

+ 5 - 1
catch/device/controller/Station.php

@@ -66,7 +66,11 @@ class Station extends CatchController
      */
     public function update(Request $request, $id) : \think\Response
     {
-        return CatchResponse::success($this->stationModel->updateBy($id, $request->post()));
+        $params=$request->post();
+        $gcjLoc = \algorithm\Geometry::convertBd09ToGcj02((float)$params['latitude'],(float)$params['longitude']);
+        $params['longitude']=$gcjLoc['lng'];
+        $params['latitude']=$gcjLoc['lat'];
+        return CatchResponse::success($this->stationModel->updateBy($id, $params));
     }
     
     /**

+ 5 - 1
catch/device/model/Station.php

@@ -48,7 +48,11 @@ class Station extends Model
             ->catchSearch()
             ->append(['is_online'])
             ->order($this->aliasField('online_time'), 'desc')
-            ->paginate();
+            ->paginate()->each(function($item, $key)  {
+                $wgsLoc = \algorithm\Geometry::convertGcj02ToBd09((float)$item['latitude'],(float)$item['longitude']);
+                $item['longitude']=$wgsLoc['lng'];
+                $item['latitude']=$wgsLoc['lat'];
+            });
             
         return $res;
     }