This commit is contained in:
wangcongtao
2020-05-27 15:42:21 +08:00
parent 39d78094af
commit 2e9f848817
23 changed files with 519 additions and 522 deletions

View File

@@ -16,7 +16,7 @@ import com.mogo.utils.logger.Logger;
* @author congtaowang
* @since 2020-05-27
* <p>
* 描述
* 调用 #mogo-module-service# 模块的样式打点
*/
@Route( path = MogoServicePaths.PATH_MARKER_SERVICE )
public class MogoMarkerServiceImpl implements IMogoMarkerService {
@@ -27,9 +27,9 @@ public class MogoMarkerServiceImpl implements IMogoMarkerService {
@Override
public IMogoMarker drawMarker( Object object ) {
if ( object instanceof MarkerShowEntity ) {
return MarkerServiceHandler.drawMapMarker( ( ( MarkerShowEntity ) object ) );
return MarkerServiceHandler.getMapMarkerManager().drawMapMarker( ( ( MarkerShowEntity ) object ) );
}
Logger.w(TAG, "object must instance of [com.mogo.module.common.entity.MarkerShowEntity]");
Logger.w( TAG, "object must instance of [com.mogo.module.common.entity.MarkerShowEntity]" );
return null;
}

View File

@@ -10,7 +10,7 @@
<shape android:shape="rectangle" >
<size android:width="@dimen/dp_20"
android:height="@dimen/dp_20"/>
<solid android:color="#4D4F64" />
<solid android:color="#3F4057" />
</shape >
</rotate >
</item >

View File

@@ -37,7 +37,7 @@
android:layout_width="@dimen/dp_60"
android:layout_height="@dimen/dp_60"
android:layout_gravity="center"
android:layout_marginLeft="@dimen/dp_10"
android:layout_marginLeft="@dimen/dp_15"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"