1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.dji.sample.patches.kml;
|
| public class KmlLine extends KmlBaseEntity {
| private String color;
| private long width;
| public String getColor() {
| return color;
| }
| public void setColor(String color) {
| this.color = color;
| }
| public long getWidth() {
| return width;
| }
| public void setWidth(long width) {
| this.width = width;
| }
| }
|
|