This commit is contained in:
wangcongtao
2020-05-29 19:53:43 +08:00
parent 4a778fb003
commit 74d52c83f8
3 changed files with 6 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ MOGO_MODULE_GUIDE_VERSION=1.1.0.12
## 工程外部模块
# 探路
MOGO_MODULE_TANLU_VERSION=1.0.6.2
MOGO_MODULE_TANLU_VERSION=1.0.6.3
# 车聊聊
CARCHATTING_VERSION=1.0.4-SNAPSHOT
# 车聊聊接口

View File

@@ -137,6 +137,9 @@ public class MarkerExploreWay implements Serializable {
}
public String getPoiType() {
if ( TextUtils.isEmpty( poiType ) ) {
return MarkerPoiTypeEnum.FOURS_BLOCK_UP;
}
return poiType;
}

View File

@@ -286,7 +286,6 @@ public class EntranceFragment extends MvpFragment< EntranceView, EntrancePresent
if(rootView!=null) {
TopViewAnimHelper.getInstance().init(rootView);
}
TopViewAnimHelper.getInstance().setIMogoMapUIController( mMApUIController );
mExitNavi = findViewById( R.id.module_entrance_id_exit_navi );
mExitNavi.setOnClickListener( view -> {
@@ -379,6 +378,8 @@ public class EntranceFragment extends MvpFragment< EntranceView, EntrancePresent
mMogoStatusManager.registerStatusChangedListener( TAG, StatusDescriptor.UPLOADING, this );
mMogoStatusManager.registerStatusChangedListener( TAG, StatusDescriptor.DISPLAY_OVERVIEW, this );
TopViewAnimHelper.getInstance().setIMogoMapUIController( mMApUIController );
}
@Override