dashboard
repositories
filestore
activity
search
login
drone
/
drone-java
无人机java后台代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
更新图片信息返回提示信息
rain
2024-07-08
aba5f5bf919b7023744dc70ea28d479656e07c9b
[drone/drone-java.git]
/
src
/
main
/
java
/
com
/
dji
/
sample
/
geo
/
entity
/
GeoJson.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dji.sample.geo.entity;
import lombok.Data;
import java.util.List;
@Data
public class GeoJson {
private String type;
private Crs crs;
private List<Feature> features;
}