修改了地图的Marker数据结构
This commit is contained in:
@@ -10,7 +10,7 @@ import java.io.Serializable;
|
||||
public class MarkerActivitiesScope implements Serializable {
|
||||
|
||||
private String content;
|
||||
private int isCheck;
|
||||
private boolean isCheck;
|
||||
|
||||
public String getContent() {
|
||||
if (TextUtils.isEmpty(content)) {
|
||||
@@ -23,11 +23,11 @@ public class MarkerActivitiesScope implements Serializable {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public int getIsCheck() {
|
||||
public boolean getIsCheck() {
|
||||
return isCheck;
|
||||
}
|
||||
|
||||
public void setIsCheck(int isCheck) {
|
||||
public void setIsCheck(boolean isCheck) {
|
||||
this.isCheck = isCheck;
|
||||
}
|
||||
|
||||
|
||||
@@ -10,8 +10,7 @@ import java.io.Serializable;
|
||||
public class MarkerOnlineTag implements Serializable {
|
||||
|
||||
private String content;
|
||||
|
||||
private int isCheck;
|
||||
private boolean isCheck;
|
||||
|
||||
public String getContent() {
|
||||
if (TextUtils.isEmpty(content)) {
|
||||
@@ -24,11 +23,11 @@ public class MarkerOnlineTag implements Serializable {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public int getIsCheck() {
|
||||
public boolean getIsCheck() {
|
||||
return isCheck;
|
||||
}
|
||||
|
||||
public void setIsCheck(int isCheck) {
|
||||
public void setIsCheck(boolean isCheck) {
|
||||
this.isCheck = isCheck;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user