删除测试数据;gps参数添加,地图侧根据非gps坐标做处理
This commit is contained in:
@@ -30,7 +30,7 @@ public class MogoPolylineOptions {
|
||||
private float mTransparency = 1.0F;
|
||||
private boolean mIsAboveMaskLayer = false;
|
||||
private boolean mIsPointsUpdated = false;
|
||||
private boolean isGps = false;
|
||||
private boolean mGps = false;
|
||||
private List<Integer> mColorValues;
|
||||
|
||||
public MogoPolylineOptions() {
|
||||
@@ -178,15 +178,13 @@ public class MogoPolylineOptions {
|
||||
mColorValues = colors;
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
public MogoPolylineOptions setGps(boolean gps) {
|
||||
isGps = gps;
|
||||
return this;
|
||||
public boolean gps() {
|
||||
return mGps;
|
||||
}
|
||||
|
||||
public boolean isGps() {
|
||||
return isGps;
|
||||
public MogoPolylineOptions setGps(boolean gps) {
|
||||
mGps = gps;
|
||||
return this;
|
||||
}
|
||||
|
||||
public List<MogoLatLng> getPoints() {
|
||||
|
||||
Reference in New Issue
Block a user