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;
}