|
@@ -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));
|
|
|
}
|
|
|
|
|
|
/**
|