|
@@ -42,7 +42,8 @@ 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']);
|
|
|
+ // $gcjLoc = \algorithm\Geometry::convertBd09ToGcj02((float)$params['latitude'],(float)$params['longitude']);
|
|
|
+ $gcjLoc = \algorithm\Geometry::wgsTOgcj((float)$params['latitude'],(float)$params['longitude']);
|
|
|
$params['longitude']=$gcjLoc['lng'];
|
|
|
$params['latitude']=$gcjLoc['lat'];
|
|
|
return CatchResponse::success($this->stationModel->storeBy($params));
|
|
@@ -67,7 +68,8 @@ class Station extends CatchController
|
|
|
public function update(Request $request, $id) : \think\Response
|
|
|
{
|
|
|
$params=$request->post();
|
|
|
- $gcjLoc = \algorithm\Geometry::convertBd09ToGcj02((float)$params['latitude'],(float)$params['longitude']);
|
|
|
+ // $gcjLoc = \algorithm\Geometry::convertBd09ToGcj02((float)$params['latitude'],(float)$params['longitude']);
|
|
|
+ $gcjLoc = \algorithm\Geometry::wgsTOgcj((float)$params['latitude'],(float)$params['longitude']);
|
|
|
$params['longitude']=$gcjLoc['lng'];
|
|
|
$params['latitude']=$gcjLoc['lat'];
|
|
|
return CatchResponse::success($this->stationModel->updateBy($id, $params));
|