Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
GeoFlyApi
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GeoFly
GeoFlyApi
Commits
65892bc1
Commit
65892bc1
authored
Jun 25, 2025
by
gdj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:camera_screen_drag画面拖动控制
parent
794beeda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
cloud-sdk/src/main/java/com/dji/sdk/cloudapi/control/CameraScreenDragRequest.java
+8
-8
No files found.
cloud-sdk/src/main/java/com/dji/sdk/cloudapi/control/CameraScreenDragRequest.java
View file @
65892bc1
...
...
@@ -25,16 +25,16 @@ public class CameraScreenDragRequest extends BaseModel {
/**
*{ "unit_name":"度每秒 / degree/s"} 云台 pitch 速度
*/
@Min
(
0
)
//
@Min(0)
//@Max(1)
private
Float
pitchSpeed
;
private
Double
pitchSpeed
;
/**
* {"unit_name":"度每秒 / degree/s"} 云台 yaw 速度,仅不锁机头时才生效
*/
@Min
(
0
)
//
@Min(0)
//@Max(1)
private
Float
yawSpeed
;
private
Double
yawSpeed
;
public
CameraScreenDragRequest
()
{
}
...
...
@@ -67,20 +67,20 @@ public class CameraScreenDragRequest extends BaseModel {
return
this
;
}
public
Float
getPitchSpeed
()
{
public
Double
getPitchSpeed
()
{
return
pitchSpeed
;
}
public
CameraScreenDragRequest
setPitchspeed
(
Float
pitchSpeed
)
{
public
CameraScreenDragRequest
setPitchspeed
(
Double
pitchSpeed
)
{
this
.
pitchSpeed
=
pitchSpeed
;
return
this
;
}
public
Float
getYawSpeed
()
{
public
Double
getYawSpeed
()
{
return
yawSpeed
;
}
public
CameraScreenDragRequest
setYawSpeed
(
Float
yawSpeed
)
{
public
CameraScreenDragRequest
setYawSpeed
(
Double
yawSpeed
)
{
this
.
yawSpeed
=
yawSpeed
;
return
this
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment