Point.java
518 Bytes
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
39
40
41
42
43
package com.bsth.entity;
public class Point {
/**
* 是否为站点
*/
private boolean isStation;
/**
* 纬度
*/
private double lat;
/**
* 经度
*/
private double lon;
public boolean isStation() {
return isStation;
}
public void setStation(boolean station) {
isStation = station;
}
public double getLat() {
return lat;
}
public void setLat(double lat) {
this.lat = lat;
}
public double getLon() {
return lon;
}
public void setLon(double lon) {
this.lon = lon;
}
}