完成了根据不同的marker类型的数据加载

This commit is contained in:
董宏宇
2020-01-10 21:39:45 +08:00
parent 6a9b073187
commit 98c9a5a089
8 changed files with 212 additions and 64 deletions

View File

@@ -21,6 +21,9 @@ public class MarkerShowEntity {
// 绑定 MarkerView 的数据
private Object bindObj;
//Marker 经纬度位置信息
private MarkerLocation markerLocation;
public boolean isChecked() {
return isChecked;
}
@@ -61,4 +64,24 @@ public class MarkerShowEntity {
public void setBindObj(Object bindObj) {
this.bindObj = bindObj;
}
public MarkerLocation getMarkerLocation() {
return markerLocation;
}
public void setMarkerLocation(MarkerLocation markerLocation) {
this.markerLocation = markerLocation;
}
@Override
public String toString() {
return "MarkerShowEntity{" +
"isChecked=" + isChecked +
", iconUrl='" + iconUrl + '\'' +
", textContent='" + textContent + '\'' +
", markerType='" + markerType + '\'' +
", bindObj=" + bindObj +
", markerLocation=" + markerLocation +
'}';
}
}