diff --git a/gradle.properties b/gradle.properties index 9c05cfb35f..fe01b43288 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 # 车聊聊接口 diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWay.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWay.java index d33c09686d..255f74c6e3 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWay.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWay.java @@ -137,6 +137,9 @@ public class MarkerExploreWay implements Serializable { } public String getPoiType() { + if ( TextUtils.isEmpty( poiType ) ) { + return MarkerPoiTypeEnum.FOURS_BLOCK_UP; + } return poiType; } diff --git a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/entrance/EntranceFragment.java b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/entrance/EntranceFragment.java index 1040f56b02..0c5e41f67b 100644 --- a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/entrance/EntranceFragment.java +++ b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/entrance/EntranceFragment.java @@ -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