This commit is contained in:
wangcongtao
2020-08-04 16:28:02 +08:00
7 changed files with 53 additions and 19 deletions

View File

@@ -308,4 +308,29 @@ public class MogoMarkerOptions extends Observable {
this.mAutoManager = autoManager;
return this;
}
@Override
public String toString() {
return "MogoMarkerOptions{" +
"latitude=" + latitude +
", longitude=" + longitude +
", title='" + title + '\'' +
", snippet='" + snippet + '\'' +
", icon=" + icon +
", icons=" + icons +
", period=" + period +
", rotate=" + rotate +
", flat=" + flat +
", visible=" + visible +
", inifoWindowEnable=" + inifoWindowEnable +
", alpha=" + alpha +
", isGps=" + isGps +
", u=" + u +
", v=" + v +
", draggable=" + draggable +
", offsetX=" + offsetX +
", offsetY=" + offsetY +
", zIndex=" + zIndex +
'}';
}
}