tongshanglei 2 年之前
父節點
當前提交
7f3f0fdc60
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      catch/device/controller/Station.php

+ 3 - 0
catch/device/controller/Station.php

@@ -42,6 +42,9 @@ class Station extends CatchController
         $params=$request->post();
         $shortcode=$this->stationModel->order('shortcode','desc')->value('shortcode');
         $params['shortcode']=$shortcode+1;
+        $gcjLoc = \algorithm\Geometry::convertBd09ToGcj02((float)$params['latitude'],(float)$params['longitude']);
+        $params['longitude']=$gcjLoc['lng'];
+        $params['latitude']=$gcjLoc['lat'];
         return CatchResponse::success($this->stationModel->storeBy($params));
     }