Merge branch 'feature/v1.0.0' of gitlab.zhidaoauto.com:ecos/yycp-service/Launcher into feature/v1.0.0

This commit is contained in:
wangcongtao
2020-01-07 21:05:02 +08:00
3 changed files with 8 additions and 8 deletions

View File

@@ -27,8 +27,8 @@ public class MogoApplication extends AbsMogoApplication {
// MogoModulePaths.addModule( new MogoModule( Demo2Constants.TAG, "CARD_DEMO2" ) );
DebugConfig.setNetMode( DebugConfig.NET_MODE_QA );
MogoModulePaths.addModule( new MogoModule( TanluConstants.TAG, "CARD_TYPE_ROAD_CODITION" ) );
MogoModulePaths.addModule(new MogoModule( CallChatConstant.PROVIDER, CallChatConstant.MODULE_NAME));
MogoModulePaths.addModule(new MogoModule(OnLineCarConstants.TAG, "CARD_TYPE_ROAD_ONLINECAR"));
MogoModulePaths.addModule(new MogoModule( CallChatConstant.PROVIDER, CallChatConstant.MODULE_NAME));
}
@Override

View File

@@ -41,7 +41,7 @@ public class MarkerServiceHandler {
@Override
public void onMsgReceived(MarkerResponse obj) {
Logger.e("",obj.toString());
Logger.e("donghongyu", "===" + obj);
}
});

View File

@@ -11,9 +11,9 @@ public class MarkerLocation {
@SerializedName("angle")
private String mAngle;
@SerializedName("lat")
private String mLat;
private double mLat;
@SerializedName("lon")
private String mLon;
private double mLon;
public String getAddress() {
return mAddress;
@@ -31,19 +31,19 @@ public class MarkerLocation {
mAngle = angle;
}
public String getLat() {
public double getLat() {
return mLat;
}
public void setLat(String lat) {
public void setLat(double lat) {
mLat = lat;
}
public String getLon() {
public double getLon() {
return mLon;
}
public void setLon(String lon) {
public void setLon(double lon) {
mLon = lon;
}