资源相关

This commit is contained in:
2025-09-16 11:41:45 +08:00
parent eda0bc0999
commit 89df7e6c0e
22 changed files with 1011 additions and 64 deletions

View File

@ -31,7 +31,7 @@ public class DiffuseScan {
@Data
public static class CustomView {
// 空对象暂无需字段
// 空对象暂无需字段
}
@Data

View File

@ -6,6 +6,9 @@ import lombok.Data;
@Data
@SourceType("layer")
public class Layer {
private String id;
private String name;
private Boolean show;
private Integer alpha;
private Integer brightness;
}

View File

@ -22,7 +22,7 @@ public class RadarScan {
@Data
public static class CustomView {
// 空对象暂无需字段
// 空对象暂无需字段
}
@Data

View File

@ -0,0 +1,35 @@
package com.yj.earth.params;
import com.yj.earth.annotation.SourceType;
import lombok.Data;
import java.util.List;
@Data
@SourceType("roam")
public class Roam {
private String name;
private List<Point> points;
private String repeat;
@Data
public static class Point {
private int duration;
private Position position;
private Orientation orientation;
}
@Data
public static class Position {
private double lng;
private double lat;
private double alt;
}
@Data
public static class Orientation {
private double heading;
private double pitch;
private double roll;
}
}