xieb
2024-04-25 41dc2ca8393e40e9efb8a6bf05f2ab1400d80215
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.dji.sample.geo.entity;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class Geometry {
    private String type;
 
    /**
     * [
     *           [
     *             [
     *               115.81799999999998,
     *               28.652296152000076
     *             ],
     *             [
     *               115.81961010540385,
     *               28.650053326558464
     *             ],
     *             [
     *               115.82417867053516,
     *               28.650434040319453
     *             ],
     *             [
     *               115.82265581549132,
     *               28.652908679765517
     *             ],
     *             [
     *               115.81799999999998,
     *               28.652296152000076
     *             ]
     *           ]
     * ]
     */
    private List<List<List<Double>>> coordinates;
}